slopus--happy
98e40dac97
CLI Smoke Test / smoke-test-linux (20) (push) Has been cancelled
CLI Smoke Test / smoke-test-linux (24) (push) Has been cancelled
CLI Smoke Test / smoke-test-windows (20) (push) Has been cancelled
CLI Smoke Test / smoke-test-windows (24) (push) Has been cancelled
Expo App TypeScript typecheck / typecheck (push) Has been cancelled
72 行
1.6 KiB
CSS
72 行
1.6 KiB
CSS
.usage-limit-section {
|
|
display: flex;
|
|
width: 100%;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
padding: 12px;
|
|
border: 1px solid var(--color-border);
|
|
border-radius: 16px;
|
|
background: var(--color-background-surface);
|
|
}
|
|
|
|
.usage-limit-section__header {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
}
|
|
|
|
.usage-limit-section__title {
|
|
margin: 0;
|
|
color: var(--color-text-foreground);
|
|
font-size: var(--text-base);
|
|
font-weight: 600;
|
|
line-height: 18px;
|
|
}
|
|
|
|
.usage-limit-section__description {
|
|
margin: 3px 0 0;
|
|
color: var(--color-text-foreground-tertiary);
|
|
font-size: var(--text-sm);
|
|
line-height: 17px;
|
|
}
|
|
|
|
.usage-limit-section__action {
|
|
height: 28px;
|
|
padding: 0 10px;
|
|
border: 1px solid var(--color-border);
|
|
border-radius: 12.5px;
|
|
background: var(--color-button-bg);
|
|
color: var(--color-text-foreground-secondary);
|
|
font-size: var(--text-base);
|
|
}
|
|
|
|
.usage-limit-section__action:hover,
|
|
.usage-limit-section__action:focus-visible {
|
|
background: var(--color-button-hover);
|
|
color: var(--color-text-foreground);
|
|
}
|
|
|
|
.usage-limit-section__meter {
|
|
width: 100%;
|
|
height: 6px;
|
|
overflow: hidden;
|
|
border-radius: 999px;
|
|
background: var(--color-button-bg);
|
|
}
|
|
|
|
.usage-limit-section__fill {
|
|
height: 100%;
|
|
border-radius: inherit;
|
|
background: var(--color-accent-blue);
|
|
}
|
|
|
|
.usage-limit-section__meta {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
color: var(--color-text-foreground-tertiary);
|
|
font-size: var(--text-xs);
|
|
line-height: 16px;
|
|
}
|