BetterDiscordApp-v2/client/src/styles/partials/modals/backdrop.scss

18 lines
314 B
SCSS
Raw Normal View History

2018-02-13 18:50:01 +01:00
.bd-backdrop {
position: fixed;
2018-08-15 11:42:43 +02:00
right: 0;
left: 0;
top: 0;
bottom: 0;
2018-02-13 18:50:01 +01:00
background: #000;
opacity: .85;
padding: 20px;
z-index: 9000;
justify-content: center;
2018-08-15 11:42:43 +02:00
animation: bd-backdropIn .22s ease;
2018-02-13 18:50:01 +01:00
2018-08-15 04:03:56 +02:00
&.bd-backdropOut {
2018-08-15 11:42:43 +02:00
animation: bd-backdropOut .22s ease;
2018-02-13 18:50:01 +01:00
}
}