Move breadcrumbs to top
This commit is contained in:
@ -391,6 +391,9 @@
|
||||
.order-1 {
|
||||
order: 1;
|
||||
}
|
||||
.order-2 {
|
||||
order: 2;
|
||||
}
|
||||
.col-span-2 {
|
||||
grid-column: span 2 / span 2;
|
||||
}
|
||||
@ -463,6 +466,9 @@
|
||||
.ms-3 {
|
||||
margin-inline-start: calc(var(--spacing) * 3);
|
||||
}
|
||||
.ms-auto {
|
||||
margin-inline-start: auto;
|
||||
}
|
||||
.me-2 {
|
||||
margin-inline-end: calc(var(--spacing) * 2);
|
||||
}
|
||||
@ -688,12 +694,27 @@
|
||||
.h-\[36rem\] {
|
||||
height: 36rem;
|
||||
}
|
||||
.h-\[calc\(100vh-2rem\)\] {
|
||||
height: calc(100vh - 2rem);
|
||||
}
|
||||
.h-\[calc\(100vh-3\.5rem\)\] {
|
||||
height: calc(100vh - 3.5rem);
|
||||
}
|
||||
.h-\[calc\(100vh-3rem\)\] {
|
||||
height: calc(100vh - 3rem);
|
||||
}
|
||||
.h-\[calc\(100vh-4rem\)\] {
|
||||
height: calc(100vh - 4rem);
|
||||
}
|
||||
.h-\[calc\(100vh-6rem\)\] {
|
||||
height: calc(100vh - 6rem);
|
||||
}
|
||||
.h-\[calc\(100vh-8rem\)\] {
|
||||
height: calc(100vh - 8rem);
|
||||
}
|
||||
.h-\[calc\(100vh-9rem\)\] {
|
||||
height: calc(100vh - 9rem);
|
||||
}
|
||||
.h-\[calc\(100vh-10rem\)\] {
|
||||
height: calc(100vh - 10rem);
|
||||
}
|
||||
@ -1257,6 +1278,9 @@
|
||||
.border-blue-300 {
|
||||
border-color: var(--color-blue-300);
|
||||
}
|
||||
.border-blue-700 {
|
||||
border-color: var(--color-blue-700);
|
||||
}
|
||||
.border-gray-100 {
|
||||
border-color: var(--color-gray-100);
|
||||
}
|
||||
@ -1341,6 +1365,9 @@
|
||||
.bg-blue-600 {
|
||||
background-color: var(--color-blue-600);
|
||||
}
|
||||
.bg-blue-700 {
|
||||
background-color: var(--color-blue-700);
|
||||
}
|
||||
.bg-emerald-500 {
|
||||
background-color: var(--color-emerald-500);
|
||||
}
|
||||
@ -2779,6 +2806,11 @@
|
||||
inset: calc(var(--spacing) * 0);
|
||||
}
|
||||
}
|
||||
.md\:order-1 {
|
||||
@media (width >= 48rem) {
|
||||
order: 1;
|
||||
}
|
||||
}
|
||||
.md\:order-2 {
|
||||
@media (width >= 48rem) {
|
||||
order: 2;
|
||||
|
||||
Reference in New Issue
Block a user