28 lines
449 B
SCSS
28 lines
449 B
SCSS
/*Working Hours*/
|
|
.working-hours {
|
|
border-radius: 5px;
|
|
p {
|
|
padding-top: 34px;
|
|
padding-bottom: 15px !important;
|
|
line-height: 0px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
margin-top: -8px !important;
|
|
width: 33.3%;
|
|
float: left;
|
|
margin-bottom: 10px;
|
|
display: inline-block;
|
|
&:nth-child(2) {
|
|
text-align: center;
|
|
}
|
|
&:last-child {
|
|
text-align: right;
|
|
}
|
|
}
|
|
&::after {
|
|
content: "";
|
|
clear: both;
|
|
display: table;
|
|
}
|
|
}
|