Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions stragula.less
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,6 @@ table a:not(.btn),
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
border-radius: 0px;
left: auto;
right: 0;
border-top: 5px solid @color2;
/* Links inside the dropdown */
a {
Expand Down Expand Up @@ -229,9 +227,16 @@ table a:not(.btn),

@media only screen and (max-width: 480px) {
.dropdown-content {
left: -100% !important;
right: auto !important;
column-gap: 0px !important;
left: -100%;
right: auto;
column-gap: 0px;
}
}

@media only screen and (min-width: 480px) {
.dropdown-content {
left: auto;
right: 0;
}
}

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ivanhercaz Here we have conflicting code for the same media definition. I do not think this will work.

Expand Down