Skip to content

Commit c86346a

Browse files
committed
💄 Maksbredde for tekstlig innhold på 600px for bedre lesbarhet
1 parent eec6e28 commit c86346a

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

components/Card/Card.module.css

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.card {
22
width: 100%;
3+
max-width: 600px;
34
background-color: var(--a-bg-default);
45
/*border: 1px solid var(--a-border-subtle);*/
56
border-radius: 12px;

components/NyttigÅVite/NyttigÅVite.module.css

+1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@
1919
display: flex;
2020
flex-direction: column;
2121
gap: var(--a-spacing-3);
22+
max-width: 600px;
2223
}

components/PageComponentFlexContainer/PageComponentFlexContainer.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ export const PageComponentFlexContainer = ({
77
subtleBackground?: boolean;
88
children: React.ReactNode;
99
}) => {
10-
console.log('subtleBackground', subtleBackground);
1110
return (
1211
<div className={`${styles.flexContainer} ${subtleBackground && styles.subtleBackground}`}>
1312
<div className={styles.content}>{children}</div>

0 commit comments

Comments
 (0)