mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
552 B
36 lines
552 B
@import '_mixins';
|
|
@import '_vars';
|
|
|
|
.notification-container {
|
|
& {
|
|
margin: .625rem;
|
|
max-width: 30rem;
|
|
min-width: 30rem;
|
|
position: fixed;
|
|
z-index: 100000;
|
|
}
|
|
|
|
.alert {
|
|
max-height: 20rem;
|
|
}
|
|
|
|
&-topright {
|
|
@include fixed(0, 0, auto, auto);
|
|
}
|
|
|
|
&-topleft {
|
|
@include fixed(0, auto, auto, 0);
|
|
}
|
|
|
|
&-bottomright {
|
|
@include fixed(auto, 0, 0, auto);
|
|
}
|
|
|
|
&-bottomleft {
|
|
@include fixed(auto, auto, 0, 0);
|
|
}
|
|
}
|
|
|
|
.clearfix {
|
|
width: 100%;
|
|
}
|