|
@@ -476,6 +476,10 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
position: relative;
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.m-4 {
|
|
|
|
+ margin: 1rem;
|
|
|
|
+}
|
|
|
|
+
|
|
.mx-auto {
|
|
.mx-auto {
|
|
margin-left: auto;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-right: auto;
|
|
@@ -573,6 +577,18 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
grid-template-columns: none;
|
|
grid-template-columns: none;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.grid-cols-10 {
|
|
|
|
+ grid-template-columns: repeat(10, minmax(0, 1fr));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.grid-cols-11 {
|
|
|
|
+ grid-template-columns: repeat(11, minmax(0, 1fr));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.grid-cols-12 {
|
|
|
|
+ grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
|
|
+}
|
|
|
|
+
|
|
.flex-col {
|
|
.flex-col {
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
@@ -620,6 +636,11 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
padding-bottom: 0.25rem;
|
|
padding-bottom: 0.25rem;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.py-4 {
|
|
|
|
+ padding-top: 1rem;
|
|
|
|
+ padding-bottom: 1rem;
|
|
|
|
+}
|
|
|
|
+
|
|
.text-center {
|
|
.text-center {
|
|
text-align: center;
|
|
text-align: center;
|
|
}
|
|
}
|