784f19ae3b
* support for custom connection details * update styles * use correct container * Restyle * remove redundant styling --------- Co-authored-by: Mark Otto <markdotto@gmail.com>
37 lines
615 B
CSS
37 lines
615 B
CSS
.main {
|
|
display: grid;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
place-content: center;
|
|
justify-items: center;
|
|
}
|
|
|
|
.tabContainer {
|
|
width: 100%;
|
|
max-width: 500px;
|
|
padding-inline: 2rem;
|
|
}
|
|
|
|
.tabSelect {
|
|
display: flex;
|
|
justify-content: stretch;
|
|
gap: .125rem;
|
|
padding: .125rem;
|
|
margin: 0 auto 1.5rem;
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
border-radius: .5rem;
|
|
}
|
|
|
|
.tabSelect > * {
|
|
width: 100%;
|
|
}
|
|
|
|
.tabContent {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
gap: .75rem;
|
|
padding: 1.5rem;
|
|
border: 1px solid rgba(255, 255, 255, 0.15);
|
|
border-radius: .5rem;
|
|
}
|