styling: make dotcom and examples site have consistent font styling (#3271)
Our font styling for dotcom vs. our examples app is _ever_ so slightly
different.
- the Inter fonts weren't being consistently linked. Sometimes we
grabbed 700, sometimes 800, sometimes 500 or 400
- the dotcom specified a default weight of 500 and line-height 1.6 which
was not specified in the our UI. this made the UI inconsistent
- furthermore, we didn't specify `text-rendering` nor `font-smooth` and
that also made things inconsistent
- finally, our buttons needed to inherit the line-height because
otherwise they were reverting to the user agent default
before:
<img width="1800" alt="Screenshot 2024-03-26 at 15 23 12"
src="https://github.com/tldraw/tldraw/assets/469604/ee25c79c-5b43-4501-a126-255a9b03a4b8">
after:
<img width="1800" alt="Screenshot 2024-03-26 at 15 22 53"
src="https://github.com/tldraw/tldraw/assets/469604/a7a62441-e767-4919-b2bb-5c283eadd230">
### Change Type
<!-- ❗ Please select a 'Scope' label ❗️ -->
- [x] `sdk` — Changes the tldraw SDK
- [ ] `dotcom` — Changes the tldraw.com web app
- [ ] `docs` — Changes to the documentation, examples, or templates.
- [ ] `vs code` — Changes to the vscode plugin
- [ ] `internal` — Does not affect user-facing stuff
<!-- ❗ Please select a 'Type' label ❗️ -->
- [x] `bugfix` — Bug fix
- [ ] `feature` — New feature
- [ ] `improvement` — Improving existing features
- [ ] `chore` — Updating dependencies, other boring stuff
- [ ] `galaxy brain` — Architectural changes
- [ ] `tests` — Changes to any test code
- [ ] `tools` — Changes to infrastructure, CI, internal scripts,
debugging tools, etc.
- [ ] `dunno` — I don't know
### Test Plan
1. Add a step-by-step description of how to test your PR here.
2.
- [ ] Unit Tests
- [ ] End to end tests
### Release Notes
- Add a brief release note for your PR here.
---------
Co-authored-by: Steve Ruiz <steveruizok@gmail.com>
2024-03-27 09:44:22 +00:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;700&display=swap');
|
2023-04-25 11:01:25 +00:00
|
|
|
|
2024-01-29 10:04:41 +00:00
|
|
|
:root {
|
|
|
|
--gray-light: #f5f5f5;
|
|
|
|
--gray-dark: #e8e8e8;
|
2024-02-02 17:36:30 +00:00
|
|
|
--black-transparent-lighter: rgba(0, 0, 0, 0.07);
|
2024-01-29 10:04:41 +00:00
|
|
|
--black-transparent-light: rgba(0, 0, 0, 0.3);
|
|
|
|
--black-transparent-dark: rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
|
|
|
|
2023-04-25 11:01:25 +00:00
|
|
|
html,
|
|
|
|
body {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
min-height: 100vh;
|
|
|
|
/* mobile viewport bug fix */
|
|
|
|
min-height: -webkit-fill-available;
|
|
|
|
height: 100%;
|
2024-03-19 11:41:25 +00:00
|
|
|
/* prevent two-finger swipe to go back */
|
|
|
|
overscroll-behavior-x: none;
|
2023-04-25 11:01:25 +00:00
|
|
|
}
|
2023-12-27 17:17:18 +00:00
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
2023-04-25 11:01:25 +00:00
|
|
|
|
|
|
|
html,
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tldraw__editor {
|
2023-12-27 17:17:18 +00:00
|
|
|
position: absolute;
|
2023-04-25 11:01:25 +00:00
|
|
|
inset: 0px;
|
|
|
|
overflow: hidden;
|
2024-01-05 14:21:58 +00:00
|
|
|
overscroll-behavior: none;
|
|
|
|
touch-action: none;
|
2023-04-25 11:01:25 +00:00
|
|
|
}
|
2023-07-05 14:07:28 +00:00
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
.example {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto 1fr;
|
|
|
|
grid-auto-flow: column;
|
2023-07-05 14:07:28 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
.example__content {
|
|
|
|
position: relative;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
overflow: auto;
|
2023-07-05 14:07:28 +00:00
|
|
|
}
|
|
|
|
|
2023-12-27 17:17:18 +00:00
|
|
|
@media screen and (max-width: 500px) {
|
2024-02-02 17:36:30 +00:00
|
|
|
.example {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
grid-auto-flow: column;
|
|
|
|
}
|
|
|
|
.example__sidebar {
|
|
|
|
display: none;
|
2023-12-27 17:17:18 +00:00
|
|
|
}
|
2023-07-05 14:07:28 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
/* --------------------- Sidebar -------------------- */
|
|
|
|
|
|
|
|
.example__sidebar {
|
|
|
|
width: 256px;
|
|
|
|
min-width: 256px;
|
2023-12-27 17:17:18 +00:00
|
|
|
display: grid;
|
2024-04-27 11:13:38 +00:00
|
|
|
grid-template-rows: auto 48px 48px 1fr auto;
|
2024-02-02 17:36:30 +00:00
|
|
|
border-right: 1px solid var(--black-transparent-light);
|
|
|
|
overflow: hidden;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 500;
|
|
|
|
max-height: 100%;
|
2023-12-27 17:17:18 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
.example__sidebar a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
2023-12-27 17:17:18 +00:00
|
|
|
}
|
|
|
|
|
2024-04-27 11:13:38 +00:00
|
|
|
.example__sidebar__filter {
|
|
|
|
margin: 8px;
|
|
|
|
padding: 8px;
|
|
|
|
border-radius: 6px;
|
2024-05-17 13:11:52 +00:00
|
|
|
border: 1px solid var(--gray-dark);
|
2024-04-27 11:13:38 +00:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
/* Header */
|
|
|
|
|
|
|
|
.example__sidebar__header {
|
|
|
|
display: flex;
|
|
|
|
height: 40px;
|
|
|
|
align-items: center;
|
|
|
|
max-width: 100%;
|
|
|
|
padding: 0 4px 0 8px;
|
2023-07-05 14:07:28 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
.example__sidebar__header__logo {
|
|
|
|
all: unset;
|
2024-01-29 10:04:41 +00:00
|
|
|
cursor: pointer;
|
2024-02-02 17:36:30 +00:00
|
|
|
flex: none;
|
|
|
|
font-size: 1.15rem;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: start;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0px;
|
2024-01-29 10:04:41 +00:00
|
|
|
}
|
2024-02-02 17:36:30 +00:00
|
|
|
.examples__tldraw__logo {
|
|
|
|
height: 18px;
|
|
|
|
width: auto;
|
2024-01-29 10:04:41 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
/* Categories */
|
2024-01-29 10:04:41 +00:00
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
ul.example__sidebar__categories {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
2024-01-29 10:04:41 +00:00
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
.example__sidebar__category__header {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr auto;
|
|
|
|
font-weight: 800;
|
|
|
|
align-items: center;
|
|
|
|
padding: 8px 12px;
|
|
|
|
margin: 0px;
|
2024-01-29 10:04:41 +00:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
/* Category */
|
2024-01-29 10:04:41 +00:00
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
li.example__sidebar__category {
|
2024-04-27 11:13:38 +00:00
|
|
|
display: none;
|
2024-02-02 17:36:30 +00:00
|
|
|
position: relative;
|
|
|
|
padding: 8px 0px;
|
2024-01-29 10:04:41 +00:00
|
|
|
}
|
|
|
|
|
2024-04-27 11:13:38 +00:00
|
|
|
.example__sidebar__category:has(> ul > li) {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
ul.example__sidebar__category__items {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0px 0px 0px 4px;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
2024-01-29 10:04:41 +00:00
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
li.examples__sidebar__item {
|
|
|
|
padding: 0px 8px 0px 8px;
|
2023-12-27 17:17:18 +00:00
|
|
|
position: relative;
|
2024-02-02 17:36:30 +00:00
|
|
|
margin: 0px;
|
|
|
|
height: 32px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: row;
|
2023-12-27 17:17:18 +00:00
|
|
|
}
|
2024-01-29 10:04:41 +00:00
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
.examples__sidebar__item__link {
|
|
|
|
display: block;
|
2023-12-27 17:17:18 +00:00
|
|
|
position: absolute;
|
2024-02-02 17:36:30 +00:00
|
|
|
inset: 0px;
|
|
|
|
height: 100%;
|
2023-07-05 14:07:28 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
.examples__sidebar__item__title {
|
|
|
|
max-width: 100%;
|
|
|
|
font-weight: 500;
|
|
|
|
margin: 0px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
flex-grow: 2;
|
2023-12-27 17:17:18 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
.examples__sidebar__item__details {
|
|
|
|
width: 100%;
|
|
|
|
margin: 8px 0 0 0;
|
2023-12-27 17:17:18 +00:00
|
|
|
}
|
2024-02-02 17:36:30 +00:00
|
|
|
|
|
|
|
.examples__sidebar__item[data-active='true']:not(:hover) > .examples__sidebar__item__link::after {
|
2023-12-27 17:17:18 +00:00
|
|
|
opacity: 1;
|
2023-07-05 14:07:28 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
/* -------------------- List Item ------------------- */
|
|
|
|
|
|
|
|
.example__sidebar__item__buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
height: 32px;
|
|
|
|
margin-right: -8px;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
.example__sidebar__item__button {
|
2023-12-27 17:17:18 +00:00
|
|
|
all: unset;
|
2024-02-02 17:36:30 +00:00
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
opacity: 0.8;
|
|
|
|
height: 100%;
|
|
|
|
width: 32px;
|
|
|
|
z-index: 10;
|
|
|
|
color: inherit;
|
2023-12-27 17:17:18 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2024-02-02 17:36:30 +00:00
|
|
|
justify-content: center;
|
2023-12-27 17:17:18 +00:00
|
|
|
}
|
2024-02-02 17:36:30 +00:00
|
|
|
.example__sidebar__item__button:hover {
|
|
|
|
z-index: 20;
|
2023-12-27 17:17:18 +00:00
|
|
|
}
|
2024-02-02 17:36:30 +00:00
|
|
|
.example__sidebar__item__button:nth-of-type(n + 2) {
|
|
|
|
margin-left: -4px;
|
2023-12-27 17:17:18 +00:00
|
|
|
}
|
2024-02-02 17:36:30 +00:00
|
|
|
|
|
|
|
.example {
|
|
|
|
position: absolute;
|
|
|
|
inset: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: stretch;
|
2023-12-27 17:17:18 +00:00
|
|
|
}
|
2024-02-02 17:36:30 +00:00
|
|
|
|
2024-02-07 16:51:04 +00:00
|
|
|
/* ----------------- Header/Footer Buttons ----------------- */
|
2024-02-02 17:36:30 +00:00
|
|
|
|
2024-02-07 16:51:04 +00:00
|
|
|
.example__sidebar__header-links,
|
2024-02-02 17:36:30 +00:00
|
|
|
.example__sidebar__footer-links {
|
2023-12-27 17:17:18 +00:00
|
|
|
display: flex;
|
2024-02-02 17:36:30 +00:00
|
|
|
flex-direction: column;
|
|
|
|
gap: 8px;
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 400;
|
|
|
|
padding: 8px;
|
2024-05-17 13:11:52 +00:00
|
|
|
border-top: 1px solid var(--gray-dark);
|
2023-12-27 17:17:18 +00:00
|
|
|
}
|
2024-02-02 17:36:30 +00:00
|
|
|
|
2024-02-07 16:51:04 +00:00
|
|
|
.example__sidebar__header-link,
|
2024-02-02 17:36:30 +00:00
|
|
|
.example__sidebar__footer-link {
|
|
|
|
padding: 8px 8px;
|
2023-12-27 17:17:18 +00:00
|
|
|
border-radius: 6px;
|
2024-01-26 14:44:19 +00:00
|
|
|
background-color: hsl(214, 84%, 56%);
|
2023-12-27 17:17:18 +00:00
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
text-align: center;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2024-02-02 17:36:30 +00:00
|
|
|
color: #fff;
|
2023-12-27 17:17:18 +00:00
|
|
|
text-decoration: none;
|
2024-01-26 14:44:19 +00:00
|
|
|
box-shadow:
|
|
|
|
0px 1px 2px rgba(0, 0, 0, 0.12),
|
|
|
|
0px 1px 3px rgba(0, 0, 0, 0.04);
|
|
|
|
}
|
|
|
|
|
2024-02-07 16:51:04 +00:00
|
|
|
a.example__sidebar__header-link {
|
2024-02-02 17:36:30 +00:00
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.example__sidebar__footer-link--grey {
|
2024-05-17 13:11:52 +00:00
|
|
|
background-color: var(--gray-light);
|
2024-01-26 14:44:19 +00:00
|
|
|
color: black;
|
2024-05-17 13:11:52 +00:00
|
|
|
border: 1px solid var(--gray-dark);
|
2024-01-26 14:44:19 +00:00
|
|
|
font-size: 14px;
|
2023-12-27 17:17:18 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
/* ------------------ Social Links ------------------ */
|
2024-01-26 14:44:19 +00:00
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
.example__sidebar__header__socials {
|
2024-01-26 14:44:19 +00:00
|
|
|
display: flex;
|
2024-02-02 17:36:30 +00:00
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-end;
|
|
|
|
flex-grow: 2;
|
2024-01-26 14:44:19 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
.example__sidebar__header__socials a {
|
|
|
|
color: black;
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
2023-12-27 17:17:18 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2024-02-02 17:36:30 +00:00
|
|
|
justify-content: center;
|
2023-12-27 17:17:18 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
2024-01-29 10:04:41 +00:00
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
.example__sidebar__icon {
|
|
|
|
flex-shrink: 0;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
color: black;
|
|
|
|
background-color: black;
|
2023-12-27 17:17:18 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
/* --------------------- Scroll --------------------- */
|
2023-12-27 17:17:18 +00:00
|
|
|
|
|
|
|
.scroll-light {
|
|
|
|
scrollbar-width: thin;
|
|
|
|
}
|
|
|
|
.scroll-light::-webkit-scrollbar {
|
|
|
|
display: block;
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
background-color: inherit;
|
|
|
|
}
|
|
|
|
.scroll-light::-webkit-scrollbar-button {
|
|
|
|
display: none;
|
|
|
|
width: 0;
|
|
|
|
height: 10px;
|
|
|
|
}
|
|
|
|
.scroll-light::-webkit-scrollbar-thumb {
|
|
|
|
background-clip: padding-box;
|
|
|
|
width: 0;
|
|
|
|
min-height: 36px;
|
|
|
|
border: 2px solid transparent;
|
|
|
|
border-radius: 6px;
|
|
|
|
background-color: rgba(0, 0, 0, 0.25);
|
|
|
|
}
|
|
|
|
.scroll-light::-webkit-scrollbar-thumb:hover {
|
2024-01-29 10:04:41 +00:00
|
|
|
background-color: var(--black-transparent-light);
|
2023-12-27 17:17:18 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
/* ---------------------- Hover --------------------- */
|
|
|
|
|
|
|
|
.hoverable::after {
|
|
|
|
display: block;
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
inset: 1px;
|
|
|
|
opacity: 0;
|
|
|
|
z-index: -1;
|
|
|
|
background-color: var(--gray-light);
|
|
|
|
border-radius: 4px;
|
2023-07-05 14:07:28 +00:00
|
|
|
}
|
2024-01-26 14:44:19 +00:00
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
.hoverable:hover::after {
|
|
|
|
opacity: 1;
|
2024-01-29 10:04:41 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
/* --------------------- Dialog --------------------- */
|
|
|
|
|
|
|
|
.example__dialog__overlay {
|
|
|
|
position: fixed;
|
|
|
|
inset: 0;
|
|
|
|
z-index: 9999999998;
|
|
|
|
background-color: var(--black-transparent-dark);
|
|
|
|
}
|
|
|
|
|
|
|
|
.example__dialog__content {
|
|
|
|
position: fixed;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
z-index: 9999999999;
|
|
|
|
width: 680px;
|
|
|
|
max-width: calc(100% - 40px);
|
|
|
|
max-height: calc(100vh - 40px);
|
|
|
|
overflow: auto;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
|
|
|
|
padding: 16px;
|
|
|
|
background-color: white;
|
2024-01-26 14:44:19 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
.example__dialog__content h1 {
|
|
|
|
font-size: 20px;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.example__dialog__markdown {
|
|
|
|
min-height: 40px;
|
|
|
|
line-height: 1.5;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.example__dialog__markdown p {
|
|
|
|
margin: 12px 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.example__dialog__markdown a {
|
|
|
|
color: royalblue;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.example__dialog__markdown a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.example__dialog__actions {
|
2024-01-26 14:44:19 +00:00
|
|
|
display: flex;
|
2024-02-02 17:36:30 +00:00
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-top: 24px;
|
|
|
|
gap: 16px;
|
2024-01-26 14:44:19 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
.example__dialog__actions a,
|
|
|
|
.example__dialog__actions button {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 8px 12px;
|
|
|
|
border-radius: 6px;
|
2024-01-26 14:44:19 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2024-02-02 17:36:30 +00:00
|
|
|
text-decoration: none;
|
|
|
|
gap: 8px;
|
2024-05-17 13:11:52 +00:00
|
|
|
background-color: var(--gray-light);
|
2024-02-02 17:36:30 +00:00
|
|
|
color: black;
|
2024-05-17 13:11:52 +00:00
|
|
|
border: 1px solid var(--gray-dark);
|
2024-02-02 17:36:30 +00:00
|
|
|
font-size: 14px;
|
2024-01-26 14:44:19 +00:00
|
|
|
}
|
|
|
|
|
2024-02-02 17:36:30 +00:00
|
|
|
.example__dialog__content p > code {
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: monospace;
|
|
|
|
padding: 1px 4px;
|
|
|
|
margin: 0px -2px;
|
|
|
|
background-color: var(--black-transparent-lighter);
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.example__dialog__close {
|
|
|
|
all: unset;
|
2024-01-26 14:44:19 +00:00
|
|
|
}
|