1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-10-31 23:35:29 +01:00
portfolio/src/components/molecules/Availability.scss

20 lines
350 B
SCSS
Raw Normal View History

2018-04-21 02:03:45 +02:00
@import 'variables';
.availability {
position: absolute;
bottom: 0;
background: rgba($brand-light, .8);
border-radius: .25rem;
color: $brand-grey-light;
z-index: 1;
padding: $spacer / 2;
p { margin-bottom: 0; }
&.available {
color: $brand-main;
position: fixed;
bottom: $spacer;
}
}