There was an error while loading. Please reload this page.
1 parent 124a051 commit 87499e4Copy full SHA for 87499e4
1 file changed
components/DoDont/DoDont.module.css
@@ -1,15 +1,27 @@
1
.container {
2
display: grid;
3
- grid-template-columns: repeat(2, 1fr);
+ grid-template-columns: 1fr;
4
gap: 1rem;
5
}
6
7
+@media (min-width: 768px) {
8
+ .container {
9
+ grid-template-columns: repeat(2, 1fr);
10
+ }
11
+}
12
+
13
.directive {
14
border-style: solid;
15
border-width: 1px;
16
border-radius: 0.375rem;
17
padding: 1rem;
18
margin-bottom: 1rem;
19
+ overflow: hidden;
20
21
22
+.directive pre {
23
+ overflow-x: auto;
24
+ max-width: 100%;
25
26
27
.directiveTitle {
0 commit comments