All checks were successful
check / check (push) Successful in 22s
- Replace dashed border with light red well (bg-danger-well) and rounded corners - Remove redundant 'Click to copy.' paragraph - Add --color-danger-well theme token
22 lines
469 B
CSS
22 lines
469 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--font-mono:
|
|
ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
|
|
"Liberation Mono", monospace;
|
|
--color-bg: #ffffff;
|
|
--color-fg: #000000;
|
|
--color-muted: #666666;
|
|
--color-border: #000000;
|
|
--color-border-light: #cccccc;
|
|
--color-hover: #eeeeee;
|
|
--color-well: #f5f5f5;
|
|
--color-danger-well: #fef2f2;
|
|
--color-section: #dddddd;
|
|
}
|
|
|
|
body {
|
|
width: 396px;
|
|
overflow-x: hidden;
|
|
}
|