1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-03 14:24:23 +01:00
fab-manager/app/assets/stylesheets/modules/cookies.scss

28 lines
422 B
SCSS
Raw Normal View History

2019-06-12 16:53:37 +02:00
#cookies-consent {
display: flex;
position: fixed;
bottom: 2rem;
left: 2rem;
width: 40rem;
height: 20rem;
background-color: blue;
color: white;
padding: 4rem;
flex-direction: column;
.cookies-actions {
button {
width: 50%;
}
button.decline {
background-color: transparent;
border: 0;
}
button.accept {
background-color: red;
border: 0;
}
}
}