mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2025-04-20 08:16:38 +02:00
18 lines
275 B
CSS
18 lines
275 B
CSS
.floating-alert {
|
|
/* Display alert above other components */
|
|
z-index: 2000;
|
|
}
|
|
|
|
@media(max-width: 768px) {
|
|
.floating-alert {
|
|
margin: 0.5rem;
|
|
}
|
|
}
|
|
|
|
@media(min-width: 769px) {
|
|
.floating-alert {
|
|
width: 75%;
|
|
margin: 0.5rem auto;
|
|
}
|
|
}
|