30 lines
545 B
SCSS
30 lines
545 B
SCSS
|
#cookie-notice {
|
||
|
padding: 0.5rem 1rem;
|
||
|
display: none;
|
||
|
text-align: center;
|
||
|
position: fixed;
|
||
|
bottom: 0;
|
||
|
width: calc(100% - 2rem);
|
||
|
background: #222;
|
||
|
color: rgba(255,255,255,0.8);
|
||
|
|
||
|
a {
|
||
|
display: inline-block;
|
||
|
cursor: pointer;
|
||
|
margin-left: 0.5rem;
|
||
|
}
|
||
|
|
||
|
@media (max-width: 767px) {
|
||
|
span {
|
||
|
display: block;
|
||
|
padding-top: 3px;
|
||
|
margin-bottom: 1rem;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
position: relative;
|
||
|
bottom: 4px;
|
||
|
}
|
||
|
}
|
||
|
}
|