core/panel/styles/Utilities.module.css

159 lines
1.7 KiB
CSS
Raw Normal View History

2025-06-30 18:25:26 +00:00
/* Utility classes for consistent styling */
.flex {
2025-07-02 19:30:21 +00:00
display: flex;
2025-06-30 18:25:26 +00:00
}
.flexCol {
2025-07-02 19:30:21 +00:00
flex-direction: column;
2025-06-30 18:25:26 +00:00
}
.itemsCenter {
2025-07-02 19:30:21 +00:00
align-items: center;
2025-06-30 18:25:26 +00:00
}
.justifyCenter {
2025-07-02 19:30:21 +00:00
justify-content: center;
2025-06-30 18:25:26 +00:00
}
.justifyBetween {
2025-07-02 19:30:21 +00:00
justify-content: space-between;
2025-06-30 18:25:26 +00:00
}
2025-07-02 19:30:21 +00:00
.gap1 {
gap: 4px;
}
.gap2 {
gap: 8px;
}
.gap3 {
gap: 12px;
}
.gap4 {
gap: 16px;
}
.gap5 {
gap: 20px;
}
2025-06-30 18:25:26 +00:00
2025-07-02 19:30:21 +00:00
.m0 {
margin: 0;
}
.mt1 {
margin-top: 4px;
}
.mt2 {
margin-top: 8px;
}
.mt3 {
margin-top: 12px;
}
.mt4 {
margin-top: 16px;
}
.mt5 {
margin-top: 20px;
}
2025-06-30 18:25:26 +00:00
2025-07-02 19:30:21 +00:00
.mb1 {
margin-bottom: 4px;
}
.mb2 {
margin-bottom: 8px;
}
.mb3 {
margin-bottom: 12px;
}
.mb4 {
margin-bottom: 16px;
}
.mb5 {
margin-bottom: 20px;
}
2025-06-30 18:25:26 +00:00
2025-07-02 19:30:21 +00:00
.p0 {
padding: 0;
}
.p1 {
padding: 4px;
}
.p2 {
padding: 8px;
}
.p3 {
padding: 12px;
}
.p4 {
padding: 16px;
}
.p5 {
padding: 20px;
}
2025-06-30 18:25:26 +00:00
2025-07-02 19:30:21 +00:00
.textXs {
font-size: 12px;
}
.textSm {
font-size: 14px;
}
.textBase {
font-size: 16px;
}
.textLg {
font-size: 18px;
}
.textXl {
font-size: 20px;
}
.text2Xl {
font-size: 24px;
}
2025-06-30 18:25:26 +00:00
2025-07-02 19:30:21 +00:00
.fontNormal {
font-weight: 400;
}
.fontMedium {
font-weight: 500;
}
.fontSemibold {
font-weight: 600;
}
.fontBold {
font-weight: 700;
}
2025-06-30 18:25:26 +00:00
2025-07-02 19:30:21 +00:00
.textPrimary {
color: var(--primary-color);
}
.textSecondary {
color: var(--text-secondary);
}
.textMuted {
color: var(--text-muted);
}
.textSuccess {
color: var(--success-color);
}
.textDanger {
color: var(--danger-color);
}
.textWarning {
color: var(--warning-color);
}
2025-06-30 18:25:26 +00:00
2025-07-02 19:30:21 +00:00
.bgWhite {
background-color: var(--bg-color);
}
.bgCard {
background-color: var(--card-bg);
}
.bgSuccessLight {
background-color: var(--success-light);
}
.bgDangerLight {
background-color: var(--danger-light);
}
.bgWarningLight {
background-color: var(--warning-light);
}