-
Notifications
You must be signed in to change notification settings - Fork 8
Reduce padding on mobile #572
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
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
02b6e3d
Hide scrollbars on mobile
mstrasinskis 48174aa
Get rid of extra paddings on mobile
mstrasinskis 65d9a49
Get rid of extra paddings for navigation
mstrasinskis 1dc0866
Use default scrollbars on mobile
mstrasinskis b274020
Restore container background
mstrasinskis 27059a1
Update mobile paddings
mstrasinskis 37d3e9a
🤖 update snapshots
github-actions[bot] a269786
Add a corner rounding between the header and the menu to maintain a c…
mstrasinskis c8788db
Update doc menu
mstrasinskis 29d6473
Merge branch 'reduce-padding-on-mobile' of github.com:dfinity/gix-com…
mstrasinskis 35e1634
🤖 update snapshots
github-actions[bot] 6e83148
Update doc menu
mstrasinskis b449d09
Merge branch 'reduce-padding-on-mobile' of github.com:dfinity/gix-com…
mstrasinskis f687516
Update doc menu
mstrasinskis 5dbb40e
chore: remove test style
mstrasinskis cf4717d
🤖 update snapshots
github-actions[bot] 17bb582
Revert "🤖 update snapshots"
mstrasinskis 613b5aa
Revert "🤖 update snapshots"
mstrasinskis 562fe6f
Revert "🤖 update snapshots"
mstrasinskis 7daa3cb
🤖 update snapshots
github-actions[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file modified
BIN
-8.02 KB
(91%)
e2e/tooltip.e2e.ts-snapshots/Should-render-tooltip-1-Google-Chrome-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,16 +1,21 @@ | ||
| ::-webkit-scrollbar { | ||
| background: var(--scrollbar-thumb-background); | ||
| width: var(--padding-2x); | ||
| } | ||
| @use "../mixins/media"; | ||
|
|
||
| ::-webkit-scrollbar-thumb { | ||
| background: var(--scrollbar-thumb-color); | ||
| border: calc(var(--padding) * 2 / 3) var(--scrollbar-thumb-background) solid; | ||
| border-radius: 0.5em; | ||
| -webkit-border-radius: 0.5em; | ||
| background-clip: padding-box; | ||
| } | ||
| // Rely on the default scrollbar styles for mobile devices | ||
| @include media.min-width(medium) { | ||
| ::-webkit-scrollbar { | ||
| background: var(--scrollbar-thumb-background); | ||
| width: var(--padding-2x); | ||
| } | ||
|
|
||
| ::-webkit-scrollbar-thumb { | ||
| background: var(--scrollbar-thumb-color); | ||
| border: calc(var(--padding) * 2 / 3) var(--scrollbar-thumb-background) solid; | ||
| border-radius: 0.5em; | ||
| -webkit-border-radius: 0.5em; | ||
| background-clip: padding-box; | ||
| } | ||
|
|
||
| ::-webkit-scrollbar-corner { | ||
| background: var(--scrollbar-thumb-color); | ||
| ::-webkit-scrollbar-corner { | ||
| background: var(--scrollbar-thumb-color); | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.