Refine publisher dashboard layout
This commit is contained in:
parent
2147d9c999
commit
813f19f355
8 changed files with 350 additions and 53 deletions
|
|
@ -320,6 +320,9 @@
|
|||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
.inline {
|
||||
display: inline;
|
||||
}
|
||||
.inline-flex {
|
||||
display: inline-flex;
|
||||
}
|
||||
|
|
@ -367,6 +370,18 @@
|
|||
.w-40 {
|
||||
width: calc(var(--spacing) * 40);
|
||||
}
|
||||
.w-\[26\%\] {
|
||||
width: 26%;
|
||||
}
|
||||
.w-\[34\%\] {
|
||||
width: 34%;
|
||||
}
|
||||
.w-\[48\%\] {
|
||||
width: 48%;
|
||||
}
|
||||
.w-\[66\%\] {
|
||||
width: 66%;
|
||||
}
|
||||
.w-full {
|
||||
width: 100%;
|
||||
}
|
||||
|
|
@ -388,6 +403,9 @@
|
|||
.max-w-xs {
|
||||
max-width: var(--container-xs);
|
||||
}
|
||||
.min-w-0 {
|
||||
min-width: calc(var(--spacing) * 0);
|
||||
}
|
||||
.min-w-32 {
|
||||
min-width: calc(var(--spacing) * 32);
|
||||
}
|
||||
|
|
@ -409,6 +427,9 @@
|
|||
.table-auto {
|
||||
table-layout: auto;
|
||||
}
|
||||
.table-fixed {
|
||||
table-layout: fixed;
|
||||
}
|
||||
.translate-x-5 {
|
||||
--tw-translate-x: calc(var(--spacing) * 5);
|
||||
translate: var(--tw-translate-x) var(--tw-translate-y);
|
||||
|
|
@ -455,6 +476,9 @@
|
|||
.justify-end {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.gap-1 {
|
||||
gap: calc(var(--spacing) * 1);
|
||||
}
|
||||
.gap-1\.5 {
|
||||
gap: calc(var(--spacing) * 1.5);
|
||||
}
|
||||
|
|
@ -501,6 +525,9 @@
|
|||
margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
|
||||
}
|
||||
}
|
||||
.gap-x-1\.5 {
|
||||
column-gap: calc(var(--spacing) * 1.5);
|
||||
}
|
||||
.-space-x-px {
|
||||
:where(& > :not(:last-child)) {
|
||||
--tw-space-x-reverse: 0;
|
||||
|
|
@ -732,6 +759,9 @@
|
|||
.pt-6 {
|
||||
padding-top: calc(var(--spacing) * 6);
|
||||
}
|
||||
.pr-3 {
|
||||
padding-right: calc(var(--spacing) * 3);
|
||||
}
|
||||
.pr-5 {
|
||||
padding-right: calc(var(--spacing) * 5);
|
||||
}
|
||||
|
|
@ -744,6 +774,9 @@
|
|||
.text-left {
|
||||
text-align: left;
|
||||
}
|
||||
.text-right {
|
||||
text-align: right;
|
||||
}
|
||||
.align-top {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
|
@ -1144,6 +1177,61 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
.md\:hidden {
|
||||
@media (width >= 48rem) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.md\:table-cell {
|
||||
@media (width >= 48rem) {
|
||||
display: table-cell;
|
||||
}
|
||||
}
|
||||
.md\:w-\[12\%\] {
|
||||
@media (width >= 48rem) {
|
||||
width: 12%;
|
||||
}
|
||||
}
|
||||
.md\:w-\[16\%\] {
|
||||
@media (width >= 48rem) {
|
||||
width: 16%;
|
||||
}
|
||||
}
|
||||
.md\:w-\[18\%\] {
|
||||
@media (width >= 48rem) {
|
||||
width: 18%;
|
||||
}
|
||||
}
|
||||
.md\:w-\[22\%\] {
|
||||
@media (width >= 48rem) {
|
||||
width: 22%;
|
||||
}
|
||||
}
|
||||
.md\:w-\[24\%\] {
|
||||
@media (width >= 48rem) {
|
||||
width: 24%;
|
||||
}
|
||||
}
|
||||
.md\:w-\[32\%\] {
|
||||
@media (width >= 48rem) {
|
||||
width: 32%;
|
||||
}
|
||||
}
|
||||
.md\:w-\[34\%\] {
|
||||
@media (width >= 48rem) {
|
||||
width: 34%;
|
||||
}
|
||||
}
|
||||
.md\:w-\[42\%\] {
|
||||
@media (width >= 48rem) {
|
||||
width: 42%;
|
||||
}
|
||||
}
|
||||
.md\:min-w-\[10rem\] {
|
||||
@media (width >= 48rem) {
|
||||
min-width: 10rem;
|
||||
}
|
||||
}
|
||||
.md\:grid-cols-2 {
|
||||
@media (width >= 48rem) {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue