Skip to content

Commit

Permalink
0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ViggoZ committed Jun 16, 2024
1 parent aa3ad45 commit bf30fcc
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions css/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -1040,11 +1040,6 @@ select {
margin: -0.625rem;
}

.-mx-2 {
margin-left: -0.5rem;
margin-right: -0.5rem;
}

.mx-auto {
margin-left: auto;
margin-right: auto;
Expand Down Expand Up @@ -1287,6 +1282,10 @@ select {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flex-col {
flex-direction: column;
}
Expand Down Expand Up @@ -2134,6 +2133,10 @@ select {
z-index: 50;
}

.lg\:block {
display: block;
}

.lg\:flex {
display: flex;
}
Expand Down

0 comments on commit bf30fcc

Please sign in to comment.