-
Notifications
You must be signed in to change notification settings - Fork 11
Rounded buttons projects site refresh #1322
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 all commits
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 |
|---|---|---|
|
|
@@ -16,6 +16,24 @@ | |
| justify-content: left; | ||
| } | ||
|
|
||
| .btn { | ||
| border-radius: var(--project-bar-button-radius, $space-0-5); | ||
| &:hover, | ||
| &:active, | ||
| &:focus-visible, | ||
| &::before { | ||
| border-radius: var(--project-bar-button-radius, $space-0-5); | ||
| } | ||
| } | ||
|
Comment on lines
+19
to
+27
|
||
|
|
||
| .btn--save { | ||
| @container (min-width: 560px) { | ||
| .icon { | ||
| display: none; | ||
| } | ||
| } | ||
| } | ||
|
|
||
| .project-name { | ||
| border-inline-end: 1px solid var(--editor-color-outline); | ||
| margin-inline-end: -1px; | ||
|
|
@@ -28,18 +46,9 @@ | |
| } | ||
| } | ||
|
|
||
| .btn--save { | ||
| border-radius: $space-0-5; | ||
| @container (min-width: 560px) { | ||
| .icon { | ||
| display: none; | ||
| } | ||
| } | ||
| } | ||
|
|
||
| .project-bar__btn-wrapper { | ||
| display: flex; | ||
| block-size: 100%; | ||
| block-size: 100%; | ||
| } | ||
|
|
||
| .project-bar__btn-wrapper:not(:last-child) { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The change to multi-line
var(...)formatting in these declarations is inconsistent with the rest ofButton.scss, wherevar(--...)is kept on a single line. Unless there’s a lint/line-length requirement driving this, consider reverting to the single-line form to avoid unnecessary diff churn and keep styling consistent.