Files
lucent-laravel/front/sass/_dialog.scss
T

47 lines
614 B
SCSS
Raw Normal View History

2024-08-15 22:11:26 +03:00
//
//:modal {
// background-color: beige;
// border: 2px solid burlywood;
// border-radius: 5px;
//}
2024-08-16 14:34:39 +03:00
html {
//scrollbar-gutter: stable;
}
2024-08-15 22:11:26 +03:00
body:has(dialog[open]) {
overflow: hidden;
}
2024-08-16 14:34:39 +03:00
dialog {
2024-08-15 22:11:26 +03:00
margin: 10px auto;
background-color: #fff;
padding: 34px;
border: none;
border-radius: 5px;
overflow: auto;
2024-08-16 14:34:39 +03:00
//position: relative;
2024-08-15 22:11:26 +03:00
2024-08-16 14:34:39 +03:00
.close {
2024-08-15 22:11:26 +03:00
position: absolute;
top: 20px;
right: 20px;
}
2024-08-16 14:34:39 +03:00
.dialog-body {
2024-08-15 22:11:26 +03:00
width: fit-content;
}
}
dialog::backdrop {
backdrop-filter: blur(3px);
}
2024-08-16 14:34:39 +03:00
.dialog-header {
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 8px;
}