snackbar.less
727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// out: snackbar.css
#snackbar-container {
position: fixed;
left: 20px;
bottom: 0;
z-index: 99999;
}
.snackbar {
overflow: hidden;
clear: both;
min-width: 288px;
max-width: 568px;
cursor: pointer;
opacity: 0;
}
.snackbar.snackbar-opened {
height: auto;
opacity: 1;
}
@media (max-width: 767px) {
#snackbar-container {
left: 0px !important;
right: 0px;
width: 100%;
.snackbar {
min-width: 100%;
}
[class="snackbar snackbar-opened"] ~ .snackbar.toast {
margin-top: 20px;
}
[class="snackbar snackbar-opened"] {
border-radius: 0;
margin-bottom: 0;
}
}
}