ngx-admin/src/app/@theme/components/footer/footer.component.scss

31 lines
573 B
SCSS
Raw Normal View History

2017-08-03 13:53:18 +03:00
@import '../../styles/themes';
@import '~@nebular/theme/styles/global/bootstrap/breakpoints';
@import '~bootstrap/scss/mixins/breakpoints';
2017-07-29 16:00:27 +03:00
@include nb-install-component() {
2017-04-18 20:29:57 +03:00
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
.socials {
font-size: 2rem;
a {
padding: 0.4rem;
color: nb-theme(color-fg);
2017-07-29 16:00:27 +03:00
transition: color ease-out 0.1s;
&:hover {
color: nb-theme(color-fg-heading);
2017-07-29 16:00:27 +03:00
}
2017-04-18 20:29:57 +03:00
}
}
@include media-breakpoint-down(is) {
.socials {
font-size: 1.5rem;
}
}
2017-07-24 13:13:01 +03:00
}