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

18 lines
324 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;
2018-08-15 04:03:56 +02:00
animation: bd-backdropIn 0.22s ease;
&.bd-backdropOut {
animation: bd-backdropOut 0.22s ease;
2018-02-13 18:50:01 +01:00
}
}