2023-01-19 19:56:00 +01:00
|
|
|
.main {
|
2022-10-24 17:03:12 +02:00
|
|
|
display: grid;
|
2023-01-19 19:56:00 +01:00
|
|
|
gap: 1rem;
|
2022-10-24 17:03:12 +02:00
|
|
|
justify-content: center;
|
2023-01-19 19:56:00 +01:00
|
|
|
place-content: center;
|
|
|
|
justify-items: center;
|
2023-03-13 19:31:05 +01:00
|
|
|
padding-bottom: 100px;
|
2023-10-26 20:07:59 +02:00
|
|
|
overflow: auto;
|
2022-10-24 17:03:12 +02:00
|
|
|
}
|
2023-03-13 16:46:37 +01:00
|
|
|
|
|
|
|
.tabContainer {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 500px;
|
|
|
|
padding-inline: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabSelect {
|
|
|
|
display: flex;
|
|
|
|
justify-content: stretch;
|
2023-03-13 19:31:05 +01:00
|
|
|
gap: 0.125rem;
|
|
|
|
padding: 0.125rem;
|
2023-03-13 16:46:37 +01:00
|
|
|
margin: 0 auto 1.5rem;
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
2023-03-13 19:31:05 +01:00
|
|
|
border-radius: 0.5rem;
|
2023-03-13 16:46:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.tabSelect > * {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabContent {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
2023-03-13 19:31:05 +01:00
|
|
|
gap: 0.75rem;
|
2023-03-13 16:46:37 +01:00
|
|
|
padding: 1.5rem;
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
2023-03-13 19:31:05 +01:00
|
|
|
border-radius: 0.5rem;
|
2023-03-13 16:46:37 +01:00
|
|
|
}
|