1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-31 09:41:47 +02:00

fix(dialog): add the same after as containers is-dark.

This commit is contained in:
Igor Guastalla de Lima
2019-02-08 22:19:30 -02:00
parent c7d695fbd4
commit c9226382db

View File

@@ -21,5 +21,16 @@
color: $background-color;
background-color: $base-color;
border-color: $background-color;
&::after {
position: absolute;
top: -$border-size * 1.8;
right: -$border-size * 1.8;
bottom: -$border-size * 1.8;
left: -$border-size * 1.8;
z-index: -1;
content: "";
background-color: $base-color;
}
}
}