blob: 4342171b07e7df19e9066a9963ee2333566c454f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
.flash-message {
@apply block rounded my-2 p-2;
}
.table-header-padded {
@apply px-2 py-1;
}
.table-cell-padded {
@apply border px-2 py-1;
}
.game-container-box {
min-height: 35rem;
@apply p-2 border-2 border-gray-800 rounded;
}
.side-box {
height: 35rem;
position: -webkit-sticky;
position: sticky;
top: 8px;
}
.header-title {
font-family: "Montaga", "Open Sans", sans-serif;
}
#look_output {
@apply min-w-full my-2 overflow-auto border-2 border-gray-800 rounded;
height: 75px;
}
|