Skip to content

Commit

Permalink
New CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
jissereitsma committed Jan 11, 2024
1 parent 4477ba1 commit 7b382fd
Showing 1 changed file with 21 additions and 41 deletions.
62 changes: 21 additions & 41 deletions pub/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1185,10 +1185,6 @@ video {
display:flex;
}

.inline-flex {
display:inline-flex;
}

.table {
display:table;
}
Expand All @@ -1213,6 +1209,10 @@ video {
max-height:12rem;
}

.w-auto {
width:auto;
}

.w-6 {
width:1.5rem;
}
Expand All @@ -1221,10 +1221,6 @@ video {
width:100%;
}

.w-auto {
width:auto;
}

.max-w-none {
max-width:none;
}
Expand Down Expand Up @@ -1265,18 +1261,14 @@ video {
justify-content:space-between;
}

.gap-4 {
gap:1rem;
.gap-8 {
gap:2rem;
}

.gap-2 {
gap:0.5rem;
}

.gap-8 {
gap:2rem;
}

.break-words {
overflow-wrap:break-word;
}
Expand Down Expand Up @@ -1317,32 +1309,28 @@ video {
padding:0.5rem;
}

.p-4 {
padding:1rem;
}

.p-8 {
padding:2rem;
}

.p-4 {
padding:1rem;
}

.p-1 {
padding:0.25rem;
}

.p-6 {
padding:1.5rem;
.py-4 {
padding-top:1rem;
padding-bottom:1rem;
}

.py-1 {
padding-top:0.25rem;
padding-bottom:0.25rem;
}

.py-4 {
padding-top:1rem;
padding-bottom:1rem;
}

.px-4 {
padding-left:1rem;
padding-right:1rem;
Expand Down Expand Up @@ -1380,18 +1368,6 @@ video {
padding-bottom:0.25rem;
}

.pl-24 {
padding-left:6rem;
}

.pt-8 {
padding-top:2rem;
}

.pb-6 {
padding-bottom:1.5rem;
}

.pl-2 {
padding-left:0.5rem;
}
Expand All @@ -1400,6 +1376,14 @@ video {
padding-right:0.5rem;
}

.pl-24 {
padding-left:6rem;
}

.pt-8 {
padding-top:2rem;
}

.text-center {
text-align:center;
}
Expand Down Expand Up @@ -1576,10 +1560,6 @@ video {
flex:none;
}

.md\:flex-grow {
flex-grow:1;
}

.md\:text-lg {
font-size:1.125rem;
line-height:1.75rem;
Expand Down

0 comments on commit 7b382fd

Please sign in to comment.