Restyle the Micropub tokens admin table
Breaks the table out of the centred content column to full page width via a subgrid on <main> (adds a reusable .full-bleed utility), and reworks the table itself to match a Claude Design mockup: a rounded card wrapper, scope values as pill chips, a dotted status pill, and proportional column widths. Colours use the site's existing --primary-hue/light-dark() tokens so it stays correct in both themes. The card scrolls horizontally on narrow viewports instead of clipping content. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LHN7V9kyZxrsxaspMSqoGJ
This commit is contained in:
parent
30ec2ec0e8
commit
6a0bb623fc
7 changed files with 135 additions and 45 deletions
|
|
@ -18,7 +18,17 @@
|
|||
}
|
||||
|
||||
> main {
|
||||
grid-column: 2/3;
|
||||
grid-column: 1/-1;
|
||||
display: grid;
|
||||
grid-template-columns: subgrid;
|
||||
|
||||
> * {
|
||||
grid-column: 2/3;
|
||||
}
|
||||
|
||||
> .full-bleed {
|
||||
grid-column: 1/-1;
|
||||
}
|
||||
}
|
||||
|
||||
> footer {
|
||||
|
|
|
|||
Loading…
Reference in a new issue