aboutsummaryrefslogtreecommitdiff
path: root/static/css
diff options
context:
space:
mode:
authorBobby <[email protected]>2024-09-04 00:55:20 -0400
committerBobby <[email protected]>2024-09-04 00:55:20 -0400
commitb73b047452ba47141a96cf000333fc9a7211aa91 (patch)
treec1a306d9afb5f6ecf260f56d64280847588878db /static/css
parent763308caf9442b9b636a14ae0fb4b0659e2a0c8c (diff)
downloadyugen-b73b047452ba47141a96cf000333fc9a7211aa91.tar.xz
yugen-b73b047452ba47141a96cf000333fc9a7211aa91.zip
small fixes
Diffstat (limited to 'static/css')
-rw-r--r--static/css/main.css24
1 files changed, 24 insertions, 0 deletions
diff --git a/static/css/main.css b/static/css/main.css
index 08cbce2..d85407a 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -858,6 +858,10 @@ video {
height: 100%;
}
+.h-64 {
+ height: 16rem;
+}
+
.max-h-24 {
max-height: 6rem;
}
@@ -935,10 +939,18 @@ video {
width: max-content;
}
+.w-52 {
+ width: 13rem;
+}
+
.min-w-32 {
min-width: 8rem;
}
+.min-w-56 {
+ min-width: 14rem;
+}
+
.max-w-4xl {
max-width: 56rem;
}
@@ -968,6 +980,10 @@ video {
max-width: max-content;
}
+.max-w-56 {
+ max-width: 14rem;
+}
+
.flex-1 {
flex: 1 1 0%;
}
@@ -1110,6 +1126,10 @@ video {
overflow: hidden;
}
+.overflow-scroll {
+ overflow: scroll;
+}
+
.overflow-x-auto {
overflow-x: auto;
}
@@ -1118,6 +1138,10 @@ video {
overflow-y: auto;
}
+.overflow-y-scroll {
+ overflow-y: scroll;
+}
+
.truncate {
overflow: hidden;
text-overflow: ellipsis;