49 lines
469 B
CSS
49 lines
469 B
CSS
|
|
.ui-space-x {
|
||
|
|
display: inline-block;
|
||
|
|
flex-shrink: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ui-space-y {
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ui-space-x-xs {
|
||
|
|
width: 0.25rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ui-space-x-sm {
|
||
|
|
width: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ui-space-x-md {
|
||
|
|
width: 0.75rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ui-space-x-lg {
|
||
|
|
width: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ui-space-x-xl {
|
||
|
|
width: 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ui-space-y-xs {
|
||
|
|
height: 0.25rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ui-space-y-sm {
|
||
|
|
height: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ui-space-y-md {
|
||
|
|
height: 0.75rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ui-space-y-lg {
|
||
|
|
height: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ui-space-y-xl {
|
||
|
|
height: 1.5rem;
|
||
|
|
}
|