2024-01-15 05:17:11 +00:00
|
|
|
.container {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 30px;
|
2024-02-06 07:59:33 +00:00
|
|
|
padding-bottom: 40px;
|
2024-01-15 05:17:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.actions {
|
2023-03-26 11:15:08 +00:00
|
|
|
border: 1px solid var(--base400);
|
2020-09-27 07:51:29 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
|
padding: 0 20px 20px 20px;
|
2024-01-15 05:17:11 +00:00
|
|
|
display: grid;
|
|
|
|
|
gap: 40px;
|
|
|
|
|
grid-template-columns: repeat(3, minmax(300px, 1fr));
|
|
|
|
|
box-shadow: 0 0 0 10px var(--base100);
|
2020-09-27 07:51:29 +00:00
|
|
|
}
|
2022-01-15 03:10:46 +00:00
|
|
|
|
2023-01-31 05:44:07 +00:00
|
|
|
.header {
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 700;
|
2023-03-26 11:15:08 +00:00
|
|
|
margin: 20px 0;
|
2022-01-15 03:10:46 +00:00
|
|
|
}
|
2024-01-15 05:17:11 +00:00
|
|
|
|
|
|
|
|
.group {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wrapped {
|
|
|
|
|
border: 1px solid var(--blue900);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
}
|