Skip to content

Commit

Permalink
Remove odd gap between grids
Browse files Browse the repository at this point in the history
  • Loading branch information
adamscott committed Aug 14, 2024
1 parent 5e8d83c commit 32fbfb9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions assets/css/releases/4.3.scss
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ $donate-robot-size: 500px;
.release-cards {
display: grid;
width: 100%;
gap: $grid-gap;
gap: var(--card-padding);
grid-template-columns:
repeat(3, minmax($column-min-width, 1fr));
grid-auto-flow: row dense;
Expand Down Expand Up @@ -679,7 +679,7 @@ $donate-robot-size: 500px;
color: white;

.release-card-container {
.release-card-content .release-card-content-container{
.release-card-content .release-card-content-container {
.c-title {
color: white;

Expand Down Expand Up @@ -719,7 +719,7 @@ $donate-robot-size: 500px;

.release-card-container {
display: grid;
gap: $grid-gap;
gap: var(--card-padding);
grid-template-areas:
"contnt";

Expand All @@ -732,7 +732,7 @@ $donate-robot-size: 500px;

.release-card-content-container {
display: grid;
gap: $grid-gap;
gap: var(--card-padding);
height: 100%;

&:has(.c-title):has(.c-blockquote):has(.c-content) {
Expand Down

0 comments on commit 32fbfb9

Please sign in to comment.