Skip to content

Commit

Permalink
run lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Aprillion committed May 3, 2024
1 parent 854ea95 commit dcde863
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 15 deletions.
4 changes: 3 additions & 1 deletion app/components/ArticlesNav/articlenav.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
overflow-y: scroll;
overflow-x: hidden;
opacity: 1;
transition: opacity 200ms, width 200ms;
transition:
opacity 200ms,
width 200ms;
}

.articles-group.loading {
Expand Down
48 changes: 36 additions & 12 deletions app/newRoot.css
Original file line number Diff line number Diff line change
Expand Up @@ -290,18 +290,42 @@ h2 {
/* width classes. please turn the grid on in figma and then define widths based on how many columns there are! */
/* note I may change these to vars later */

.col-1 {width: clamp( 65px, 8.25vw, 134px);}
.col-2 {width: clamp(130px, 16.50vw, 268px);}
.col-3 {width: clamp(195px, 24.75vw, 402px);}
.col-4 {width: clamp(260px, 33.00vw, 536px);}
.col-5 {width: clamp(325px, 41.25vw, 670px);}
.col-6 {width: clamp(390px, 49.50vw, 804px);}
.col-7 {width: clamp(455px, 57.75vw, 938px);}
.col-8 {width: clamp(520px, 66.00vw, 1072px);}
.col-9 {width: clamp(585px, 74.25vw, 1206px);}
.col-10 {width: clamp(650px, 82.50vw, 1340px);}
.col-11 {width: clamp(715px, 90.75vw, 1474px);}
.col-12 {width: clamp(780px, 99.00vw, 1608px);}
.col-1 {
width: clamp(65px, 8.25vw, 134px);
}
.col-2 {
width: clamp(130px, 16.5vw, 268px);
}
.col-3 {
width: clamp(195px, 24.75vw, 402px);
}
.col-4 {
width: clamp(260px, 33vw, 536px);
}
.col-5 {
width: clamp(325px, 41.25vw, 670px);
}
.col-6 {
width: clamp(390px, 49.5vw, 804px);
}
.col-7 {
width: clamp(455px, 57.75vw, 938px);
}
.col-8 {
width: clamp(520px, 66vw, 1072px);
}
.col-9 {
width: clamp(585px, 74.25vw, 1206px);
}
.col-10 {
width: clamp(650px, 82.5vw, 1340px);
}
.col-11 {
width: clamp(715px, 90.75vw, 1474px);
}
.col-12 {
width: clamp(780px, 99vw, 1608px);
}

.full-width {
width: 100%;
Expand Down
4 changes: 2 additions & 2 deletions app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ export const shouldRevalidate: ShouldRevalidateFunction = () => false

export default function App() {
const {advanced} = useToC()

useEffect(() => {
document.title = 'AISafety.info'
}, [])

return (
<Page>
<div className="page-body">
Expand Down

0 comments on commit dcde863

Please sign in to comment.