0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 22:52:40 +00:00

Fix display property on dialog causing close() to not work

This commit is contained in:
G.Ambatte
2024-06-06 21:40:54 +12:00
parent 4f4cef0f6c
commit 9e041d26bd

View File

@@ -8,7 +8,6 @@
.notificationPopup{
position : relative;
display : inline-block;
width : 100%;
padding : 15px;
padding-bottom : 10px;
@@ -16,6 +15,10 @@
background-color : @blue;
color : white;
border : none;
&[open]{
// Do NOT set a display property on a dialog! Set it on dialog[open] instead
display: block;
}
a{
color : #e0e5c1;
font-weight : 800;