parent
e900e0256b
commit
035458ed78
2 changed files with 10 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "19.1.1",
|
||||
"version": "19.1.0",
|
||||
"description": "The source for my personal site. Built using 11ty.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
@ -215,7 +215,11 @@ hr {
|
|||
|
||||
/* tables */
|
||||
table {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
width: 100%;
|
||||
border: 1px solid var(--gray-light);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
table,
|
||||
|
@ -237,7 +241,12 @@ tr:not(:last-child) {
|
|||
th,
|
||||
td {
|
||||
padding: var(--sizing-sm);
|
||||
min-width: max-content;
|
||||
word-break: break-word;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
td {
|
||||
min-width: calc(var(--sizing-3xl) * 2);
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue