livekit-dgn/styles/Home.module.css

40 lines
663 B
CSS
Raw Normal View History

.main {
2022-10-24 17:03:12 +02:00
display: grid;
gap: 1rem;
2022-10-24 17:03:12 +02:00
justify-content: center;
place-content: center;
justify-items: center;
2023-03-13 19:31:05 +01:00
padding-bottom: 100px;
overflow: auto;
2022-10-24 17:03:12 +02: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;
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;
}
.tabSelect > * {
width: 100%;
}
.tabContent {
display: flex;
justify-content: center;
flex-direction: column;
2023-03-13 19:31:05 +01:00
gap: 0.75rem;
padding: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.15);
2023-03-13 19:31:05 +01:00
border-radius: 0.5rem;
}