2024-10-26 17:57:34 +09:00
|
|
|
.grid {
|
|
|
|
padding: 10px;
|
2024-10-27 12:34:54 +09:00
|
|
|
|
2024-10-26 17:57:34 +09:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
|
2024-10-27 12:34:54 +09:00
|
|
|
align-content: flex-start;
|
2024-10-26 17:57:34 +09:00
|
|
|
|
|
|
|
gap: 10px;
|
|
|
|
height: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|