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

18 lines
327 B
SCSS
Raw Normal View History

2018-02-13 18:50:01 +01:00
.bd-backdrop {
position: fixed;
right: 0px;
left: 0px;
top: 0px;
bottom: 0px;
background: #000;
opacity: .85;
padding: 20px;
z-index: 9000;
justify-content: center;
animation: bd-backdrop-in 0.22s ease;
&.bd-backdrop-out {
animation: bd-backdrop-out 0.22s ease;
}
}