fix: unnecessary reset

This commit is contained in:
Cory Dransfeldt 2024-04-15 17:08:30 -07:00
parent 2a753b2ed7
commit 92f4e5a2f7
No known key found for this signature in database
3 changed files with 5 additions and 11 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "11.3.2", "version": "11.3.3",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -55,6 +55,7 @@
& .timestamp { & .timestamp {
margin-left: var(--sizing-lg); margin-left: var(--sizing-lg);
text-align: right; text-align: right;
white-space: nowrap;
} }
& .presentation { & .presentation {

View file

@ -20,26 +20,19 @@ body {
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
} }
/* /*
5. Improve media defaults 5. Remove built-in form typography styles
*/
img, picture, video, canvas, svg {
display: block;
max-width: 100%;
}
/*
6. Remove built-in form typography styles
*/ */
input, button, textarea, select { input, button, textarea, select {
font: inherit; font: inherit;
} }
/* /*
7. Avoid text overflows 6. Avoid text overflows
*/ */
p, h1, h2, h3, h4, h5, h6 { p, h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word; overflow-wrap: break-word;
} }
/* /*
8. Create a root stacking context 7. Create a root stacking context
*/ */
#root, #__next { #root, #__next {
isolation: isolate; isolation: isolate;