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

23 lines
390 B
SCSS
Raw Normal View History

2017-07-29 16:00:27 +03:00
@import '../../../@theme/styles/variables';
@include nga-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;
2017-07-29 16:00:27 +03:00
color: nga-theme(color-fg);
transition: color ease-out 0.1s;
&:hover {
color: nga-theme(color-fg-heading);
}
2017-04-18 20:29:57 +03:00
}
}
2017-07-24 13:13:01 +03:00
}