Files
-S.I.S-QuaySo_v2/public/frontend/scss/layout/_footer.scss
T
2026-03-26 09:28:14 +07:00

59 lines
1.1 KiB
SCSS

.footer {
@include flex;
min-height: 70px;
border-top: 1px solid $border-color;
align-items: center;
p,
.social-links {
flex-grow: 1;
flex-basis: 0;
}
a ,p{
color: $gray-800;
padding: 4px 0;
display: inline-block;
margin: 0;
}
.brand {
font-size: 20px;
font-weight: bold;
margin-bottom: 6px;
}
.social-links {
margin-left: auto;
a {
padding: 0;
height: 40px;
width: 40px;
border-radius: 50%;
line-height: 40px;
text-align: center;
border: 2px solid $gray-600;
color: $gray-600;
&:hover {
background: $primary;
border-color: $primary;
color: $white;
text-decoration: none;
}
}
}
}
@include media-breakpoint-down(sm){
.footer {
padding: 15px 0;
flex-direction: column;
.social-links {
margin-top: 15px;
}
}
}