-
Notifications
You must be signed in to change notification settings - Fork 172
[Demo] Add banner to visual vocabulary dashboard #868
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
20d61fd
fbf0d66
b66b40d
aa4b4a6
c8d2e5d
b9af599
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,20 +92,26 @@ img[src*="#chart-icon"] { | |
} | ||
|
||
.anchor-container { | ||
background: #060a17; | ||
huong-li-nguyen marked this conversation as resolved.
Show resolved
Hide resolved
|
||
align-items: center; | ||
background: var(--text-primary); | ||
border-top-left-radius: 8px; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 😱 A rounded border?! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes 😄 I didn't like the border as is and for the banner we can make an exception 👍 It's not the banner that blocks the whole horizontal space. The banner floats already just on top of the underlying content. That horizontal space has always been there and is part of our initial layout design. It's coming from the right-side container and its padding :) |
||
bottom: 0; | ||
color: var(--text-contrast-primary); | ||
display: flex; | ||
font-weight: 600; | ||
gap: 2rem; | ||
height: 2rem; | ||
padding: 4px; | ||
place-content: baseline center; | ||
font-size: 0.8rem; | ||
font-weight: 500; | ||
height: 24px; | ||
padding: 0 12px; | ||
position: fixed; | ||
width: 100%; | ||
right: 0; | ||
huong-li-nguyen marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
.anchor-div { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: center; | ||
.anchor-container:focus, | ||
.anchor-container:hover { | ||
background: var(--text-secondary); | ||
color: var(--text-contrast-primary); | ||
} | ||
|
||
img#banner { | ||
height: 16px; | ||
} |
Uh oh!
There was an error while loading. Please reload this page.