Skip to content
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

Implement minor settings section visual fixes & height change #4343

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@
}

.sectionLine {
background-color: var(--primary-color);
border: 0;
block-size: 2px;
border-block-start: 2px solid var(--primary-color);
margin-block-start: -1px;
inline-size: 100%;
}
Expand All @@ -44,6 +43,7 @@
-webkit-user-select: none;
user-select: none;
margin-inline-start: 2%;
margin-block: 0.5em;
}

:deep(.switchGrid) {
Expand Down
9 changes: 7 additions & 2 deletions src/renderer/views/Settings/Settings.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
hr {
block-size: 2px;
inline-size: 85%;
margin-block: 0;
margin-inline: auto;
border: 0;
background-color: var(--scrollbar-color-hover);
border-block-start: 2px solid var(--scrollbar-color-hover);
}

@media only screen and (max-width: 800px) {
hr {
inline-size: 100%;
}
}