Skip to content

Commit

Permalink
misc code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveSkender committed Aug 21, 2024
1 parent 34f8bed commit f524433
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Client/src/app/chart/chart.component.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import "../styles";
@import "../styles.scss";

// note: width is managed by .content-container

Expand Down
6 changes: 3 additions & 3 deletions Client/src/app/picker/_scrollbar-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
$primary: map.get($theme, primary);
$accent: map.get($theme, accent);
$warn: map.get($theme, warn);
$background: map.get($theme, background);
$foreground: map.get($theme, foreground);
$background: map.get($theme, 'background');
$foreground: map.get($theme, 'foreground');

@media screen and (min-width: 800px) {
@media screen and (width >= 800px) {

/* width */
::-webkit-scrollbar {
Expand Down
8 changes: 4 additions & 4 deletions Client/src/app/picker/pick-config.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ h3 {
}

.param-container {
margin: 2rem 1rem 0 1rem;
margin: 2rem 1rem 0;
}

.param-input {
Expand All @@ -42,7 +42,7 @@ h3 {
.style-container {
margin: 1rem;

@media screen and (max-width: 700px) {
@media screen and (width <= 700px) {
margin-left: auto;
margin-right: auto;
max-width: 200px;
Expand All @@ -52,7 +52,7 @@ h3 {

width: 150px;

@media screen and (max-width: 700px) {
@media screen and (width <= 700px) {
display: block;
width: auto;
}
Expand All @@ -62,7 +62,7 @@ h3 {
width: 125px;
margin-left: 1rem;

@media screen and (max-width: 700px) {
@media screen and (width <= 700px) {
margin-left: 0;
width: unset;
}
Expand Down

0 comments on commit f524433

Please sign in to comment.