feat(app): new details footer appearance
This commit is contained in:
@@ -1,15 +1,12 @@
|
||||
.tabs {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-left: 2px solid rgba(163, 159, 171, 0.1);
|
||||
border-right: 2px solid rgba(163, 159, 171, 0.1);
|
||||
}
|
||||
|
||||
.tabs-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
border-bottom: 2px solid rgba(163, 159, 171, 0.1);
|
||||
}
|
||||
|
||||
button.tab {
|
||||
@@ -19,14 +16,25 @@ button.tab {
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
flex: 1;
|
||||
border-top-left-radius: 8px;
|
||||
border-top-right-radius: 8px;
|
||||
}
|
||||
|
||||
button.tab:focus-within {
|
||||
/* background-color: var(--tabs-background); */
|
||||
}
|
||||
|
||||
.tab.active {
|
||||
background-color: rgba(194, 186, 196, 0.25);
|
||||
background-color: var(--tabs-background);
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.tab-content {
|
||||
flex: 1;
|
||||
padding: 8px 16px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
border-radius: 8px;
|
||||
background-color: var(--tabs-background);
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user