Skip to content

Commit

Permalink
clicky-menu css: add column-gap.
Browse files Browse the repository at this point in the history
  • Loading branch information
steveblamey committed Jan 15, 2024
1 parent f60ea2a commit e1e9ade
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions assets/css/uzerp/clicky-menu.css
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ svg[hidden] {
/* Submenu Styles */
.clicky-menu ul {
min-width: 100%;
width: 12em;
padding: 0;
list-style: none;
background-color: var(--background-1);
Expand All @@ -189,12 +188,15 @@ svg[hidden] {
opacity: 1;
}


.clicky-menu ul {
-webkit-animation: reveal-panel 0.25s ease-in-out;
animation: reveal-panel 0.25s ease-in-out;
}

/*
Note that the JS checks for this animation name with an event listener.
If you change the name or refactor, please update the JS.
*/
@keyframes reveal-panel {
0% {
display: none;
Expand Down Expand Up @@ -253,7 +255,7 @@ svg[hidden] {
}

ul.panel {
/*columns: 4;*/
column-gap: 20px;
margin-left: 0.25em;
padding: 20px;
z-index: 999;
Expand Down

0 comments on commit e1e9ade

Please sign in to comment.