mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-05 20:46:14 +01:00
44 lines
814 B
SCSS
44 lines
814 B
SCSS
.cookies-consent {
|
|
display: flex;
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
background-color: #f5f5f5;
|
|
padding: 3rem;
|
|
flex-direction: column;
|
|
z-index: 100;
|
|
-webkit-box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.25);
|
|
-moz-box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.25);
|
|
box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.25);
|
|
|
|
.cookies-actions {
|
|
flex-wrap: wrap;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
margin-top: 1rem;
|
|
|
|
button {
|
|
@extend .fab-button;
|
|
flex: 1;
|
|
}
|
|
button.decline {
|
|
background-color: transparent;
|
|
border: 0;
|
|
}
|
|
|
|
button.accept {
|
|
background-color: red;
|
|
border: 0;
|
|
font-size: 17px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 480px) {
|
|
bottom: 3rem;
|
|
left: 3rem;
|
|
width: 40rem;
|
|
}
|
|
}
|