| .dashboard-container { |
| color: white; |
| width: 100vw; |
| overflow: hidden; |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| justify-content: center; |
| } |
|
|
| .dashboard-tabs { |
| display: flex; |
| gap: 10px; |
| } |
|
|
| .dashboard-tab { |
| padding: 5px; |
| border-radius: 5px; |
| border-bottom-left-radius: 0; |
| border-bottom-right-radius: 0; |
| transition: scale .3s ease, border .3s ease; |
| } |
|
|
| .dashboard-tab.active { |
| border: 1px solid var(--primary-special-color); |
| border-bottom: none; |
| background-image: linear-gradient( |
| 90deg, |
| var(--card-color), |
| var(--bg-secondary) |
| ); |
| scale: 1.1; |
| } |
|
|
| .tab-content-container{ |
| width: 100%; |
| height: 100%; |
| border-top: 1px solid var(--primary-special-color); |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| } |