mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
30 lines
563 B
SCSS
30 lines
563 B
SCSS
@import '../../styles/themes';
|
|
@import '~@nebular/theme/styles/global/breakpoints';
|
|
@import '~bootstrap/scss/mixins/breakpoints';
|
|
|
|
@include nb-install-component() {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
.socials {
|
|
font-size: 2rem;
|
|
|
|
a {
|
|
padding: 0.4rem;
|
|
color: nb-theme(color-fg);
|
|
transition: color ease-out 0.1s;
|
|
|
|
&:hover {
|
|
color: nb-theme(color-fg-heading);
|
|
}
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(is) {
|
|
.socials {
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
}
|