Skip to content
This repository was archived by the owner on May 12, 2026. It is now read-only.

Commit 59fa324

Browse files
Fix overflow on mobile
1 parent c675f07 commit 59fa324

1 file changed

Lines changed: 10 additions & 9 deletions

File tree

Home/Components/Box.razor.css

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
padding: 20px;
55
margin: 10px;
66
background-color: rgb(82, 91, 122);
7-
8-
--notchSize: 40px;
7+
8+
--notchSize: 40px;
99
clip-path: polygon(
10-
0% var(--notchSize),
11-
var(--notchSize) 0%,
12-
0px 0%,
13-
100% 0px,
14-
100% calc(100% - var(--notchSize)),
15-
calc(100% - var(--notchSize)) 100%,
16-
0px 100%,
10+
0% var(--notchSize),
11+
var(--notchSize) 0%,
12+
0px 0%,
13+
100% 0px,
14+
100% calc(100% - var(--notchSize)),
15+
calc(100% - var(--notchSize)) 100%,
16+
0px 100%,
1717
0% 0px
1818
);
1919
}
@@ -29,5 +29,6 @@
2929
padding: 20px;
3030
margin: 10px;
3131
background-color: #4d5676;
32+
overflow-x: auto;
3233
}
3334
}

0 commit comments

Comments
 (0)