Skip to content

Commit

Permalink
update css
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Dec 13, 2023
1 parent 6e87d18 commit 5aee762
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 6 deletions.
11 changes: 6 additions & 5 deletions MyApp/tailwind.input.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,22 +83,23 @@ select{
[data-collapsed] [data-collapse=hidden] {
display: none
}

[data-collapse-off=opacity-100] {
opacity: 1
}

[data-collapsed] [data-collapse=opacity-0] {
opacity: 0
}


[data-collapse-off=-translate-x-full] {
transform: translateX(0)
}

[data-collapsed] [data-collapse=-translate-x-full] {
transform: translateX(-100%)
}

@media (min-width: 640px) {
.youtube {
width: 761px;
height: 428px;
}
}
@tailwind utilities;
41 changes: 40 additions & 1 deletion MyApp/wwwroot/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -769,6 +769,33 @@ select{
background-color: transparent !important;
}

[data-collapsed] [data-collapse=hidden] {
display: none
}

[data-collapse-off=opacity-100] {
opacity: 1
}

[data-collapsed] [data-collapse=opacity-0] {
opacity: 0
}

[data-collapse-off=-translate-x-full] {
transform: translateX(0)
}

[data-collapsed] [data-collapse=-translate-x-full] {
transform: translateX(-100%)
}

@media (min-width: 640px) {
.youtube {
width: 761px;
height: 428px;
}
}

.sr-only {
position: absolute;
width: 1px;
Expand Down Expand Up @@ -1108,6 +1135,14 @@ select{
display: table;
}

.table-row-group {
display: table-row-group;
}

.table-row {
display: table-row;
}

.grid {
display: grid;
}
Expand All @@ -1124,6 +1159,10 @@ select{
height: 0px;
}

.h-1 {
height: 0.25rem;
}

.h-10 {
height: 2.5rem;
}
Expand Down Expand Up @@ -3708,4 +3747,4 @@ select{
.\32xl\:max-w-screen-xl {
max-width: 1280px;
}
}
}

0 comments on commit 5aee762

Please sign in to comment.