discourse/app/assets/stylesheets/admin/admin_config_components.scss
Ella E. b4a376bd9a
DEV: Use reusable d-table instead of admin-only styles (#33531)
Follow up to https://github.com/discourse/discourse/pull/33253

Switches to the generic `d-table` class instead of using the admin
stylesheet. No visual changes, except the badge/status for the API key.

| Before | After |
|--------|--------|
|
![image](https://github.com/user-attachments/assets/e4d1a0ad-8e60-4ad8-b3b1-d17b66b878e8)
|
![image](https://github.com/user-attachments/assets/5bc41353-c4a0-486b-b730-451b9f737341)
|
2025-07-10 19:58:04 -06:00

30 lines
561 B
SCSS
Vendored

@use "lib/viewport";
.admin-config.components {
.admin-config-components {
&__filters {
display: flex;
justify-content: space-between;
}
&__status-filter {
display: flex;
white-space: nowrap;
align-items: center;
gap: 1em;
}
&__parent-themes-list {
@include viewport.until(md) {
text-align: right;
max-width: 60%;
}
}
&__update-available {
font-size: var(--font-down-1);
font-weight: bold;
margin: var(--space-1) 0 var(--space-1) 0;
}
}
}