Skip to content

Commit

Permalink
Merge pull request #23 from itsyourap/Fix-event-section-grid
Browse files Browse the repository at this point in the history
Fix event section grid layout
  • Loading branch information
IndraniSom authored Apr 14, 2024
2 parents 08e151d + 58b7eb7 commit 8e6d10c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions client/styles/EventDrawer.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@

.drawer[data-active=true] {
position: relative;
z-index: 1;
display: block;

opacity: 1;
Expand All @@ -104,6 +105,7 @@

.drawer[data-active=false] {
position: absolute;
z-index: 1;
transition: all 400ms;
opacity: 0;
filter: blur(5px);
Expand All @@ -124,8 +126,10 @@
}

.drawer > * {
flex-direction: row;
align-items: flex-start;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
grid-gap: 30px;
justify-items: center;
}

.holder {
Expand Down

0 comments on commit 8e6d10c

Please sign in to comment.