mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
feat: Update TeamPage style (#375)
### Test for regressions - [x] ingestion api key - [x] personal api key - [x] slack webhooks - [x] generic webooks - [x] sentry - [x] team members - [x] time format
This commit is contained in:
parent
a14d9755f5
commit
ab96e7c002
3 changed files with 748 additions and 572 deletions
5
.changeset/stale-paws-confess.md
Normal file
5
.changeset/stale-paws-confess.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
Update Team Page layout and styling
|
||||
File diff suppressed because it is too large
Load diff
25
packages/app/styles/TeamPage.module.scss
Normal file
25
packages/app/styles/TeamPage.module.scss
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
@import './variables';
|
||||
|
||||
.header {
|
||||
align-items: center;
|
||||
background-color: $body-bg;
|
||||
border-bottom: 1px solid $slate-950;
|
||||
color: $slate-200;
|
||||
display: flex;
|
||||
font-weight: 500;
|
||||
height: 60px;
|
||||
justify-content: space-between;
|
||||
line-height: 1;
|
||||
padding: 0 32px;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.sectionHeader {
|
||||
border-bottom: 1px solid $slate-950;
|
||||
margin-top: 20px;
|
||||
padding-bottom: 10px;
|
||||
font-size: 14px;
|
||||
color: $slate-400;
|
||||
}
|
||||
Loading…
Reference in a new issue