add mobile responsive override for settings grid to stack on small screens
This commit is contained in:
parent
d12428c267
commit
0c6277536c
2 changed files with 14 additions and 0 deletions
|
|
@ -123,6 +123,13 @@ dialog#uncloseai-embedded-modal[data-theme="light"] {
|
|||
display: block;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.uncloseai-modal-settings.open {
|
||||
grid-template-columns: 1fr !important;
|
||||
grid-template-rows: auto auto auto !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* Dark theme settings panel */
|
||||
dialog#uncloseai-embedded-modal[data-theme="dark"] .uncloseai-modal-settings {
|
||||
background: rgb(26, 26, 26);
|
||||
|
|
|
|||
|
|
@ -144,6 +144,13 @@ dialog#uncloseai-embedded-modal[data-theme="light"] {
|
|||
display: block;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.uncloseai-modal-settings.open {
|
||||
grid-template-columns: 1fr !important;
|
||||
grid-template-rows: auto auto auto !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* Dark theme settings panel */
|
||||
dialog#uncloseai-embedded-modal[data-theme="dark"] .uncloseai-modal-settings {
|
||||
background: rgb(26, 26, 26);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue