d45d77bedf
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>
234 lines
3.4 KiB
CSS
234 lines
3.4 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;700&display=swap');
|
|
|
|
:root {
|
|
font-family:
|
|
Inter,
|
|
-apple-system,
|
|
'system-ui',
|
|
'Segoe UI',
|
|
'Noto Sans',
|
|
Helvetica,
|
|
Arial,
|
|
sans-serif,
|
|
'Apple Color Emoji',
|
|
'Segoe UI Emoji';
|
|
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: var(--text-color-0);
|
|
line-height: 1.6;
|
|
overscroll-behavior: none;
|
|
touch-action: none;
|
|
}
|
|
|
|
/*
|
|
1. Use a more-intuitive box-sizing model.
|
|
*/
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
/*
|
|
2. Remove default margin
|
|
*/
|
|
* {
|
|
margin: 0;
|
|
}
|
|
/*
|
|
5. Improve media defaults
|
|
*/
|
|
img,
|
|
picture,
|
|
video,
|
|
canvas,
|
|
svg {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|
|
/*
|
|
6. Remove built-in form typography styles
|
|
*/
|
|
input,
|
|
button,
|
|
textarea,
|
|
select {
|
|
font: inherit;
|
|
}
|
|
/*
|
|
7. Avoid text overflows
|
|
*/
|
|
p,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
overscroll-behavior-x: none;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
height: 100%;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
font-smooth: antialiased;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
div {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.site-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
height: 100%;
|
|
}
|
|
|
|
.icon {
|
|
flex-shrink: 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
background-color: currentColor;
|
|
}
|
|
|
|
.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 {
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
/* ------------------- Error Page ------------------- */
|
|
|
|
.error-page {
|
|
display: flex;
|
|
inset: 0px;
|
|
position: absolute;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.error-page__container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 30px;
|
|
}
|
|
|
|
.error-page__content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
/* text-header mb-sm */
|
|
.error-page__content h1 {
|
|
font-size: 20px;
|
|
font-weight: 800;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
/* text-primary-bold text-grey */
|
|
.error-page__content p {
|
|
font-size: 14px;
|
|
color: var(--text-color-2);
|
|
}
|
|
|
|
/* text-primary-bold text-grey */
|
|
.error-page__container a {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--text-color-2);
|
|
padding: 12px 4px;
|
|
}
|
|
|
|
/* ------------------ Board history ----------------- */
|
|
|
|
.board-history__list {
|
|
padding: 8px 8px 8px 24px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.board-history__list a {
|
|
padding: 8px 8px 8px 0px;
|
|
}
|
|
|
|
.board-history__list a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.board-history__restore {
|
|
position: fixed;
|
|
top: 8px;
|
|
right: 8px;
|
|
}
|
|
|
|
/* ----------------- Iframe warning ----------------- */
|
|
|
|
.iframe-warning__container {
|
|
position: absolute;
|
|
inset: 0px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
.iframe-warning__link {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
padding: 32px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.iframe-warning__link svg {
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|