Skip to content

Commit

Permalink
Merge branch 'development' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
kappys1 committed Oct 3, 2019
2 parents 3a01abe + c9894e2 commit 80a0f76
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 8 deletions.
1 change: 1 addition & 0 deletions src/components/ColorsSection/Color/Color.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ $Color-height: 3em;
outline: none;
border: none;
background: transparent;
font-size: 1rem;
width: $Color-width;
height: $Color-height;
margin: 0;
Expand Down
1 change: 1 addition & 0 deletions src/components/ColorsSection/ColorsSection.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

.ColorsSection {
padding: 0;

@include flex-content(row, center, center);
@include flex-wrap(wrap);

Expand Down
3 changes: 2 additions & 1 deletion src/components/Header/Header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,15 @@
}

button i {
font-size: 1.5em;
font-size: 2rem;
}

@include respond-to(medium) {

&__menu {
display: none;
}

}

}
1 change: 1 addition & 0 deletions src/components/LineWidthsSection/LineWidth/LineWidth.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ $LineWidth-icon-backgroundColor: #000000;
outline: none;
border: none;
background: transparent;
font-size: 1rem;
width: 3em;
height: 3em;
padding: 0px;
Expand Down
3 changes: 1 addition & 2 deletions src/components/LineWidthsSection/LineWidthsSection.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ $LineWidthsSection-gridColumnGap: 0.4em;
display: grid;
grid-template-columns: repeat($LineWidthsSection-gridTemplateColumns-repeatInteger, 1fr);
grid-column-gap: $LineWidthsSection-gridColumnGap;


font-size: 1rem;
}
1 change: 0 additions & 1 deletion src/components/Section/Section.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.Section {
padding: 20px;


h1 {
font-size: 1.7rem;
margin-top: 0;
Expand Down
9 changes: 6 additions & 3 deletions src/components/SideBar/SideBar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
background-color: $c-primary;
width: 100%;
min-width: 250px;
max-width: 350px;
padding: 1em;
padding: 2em;
position: fixed;
right: -100%;

Expand All @@ -24,7 +23,11 @@
}

@include respond-to(medium) {
position: initial;
// position: initial;
right: 0;
width: 15%;
}



}
16 changes: 16 additions & 0 deletions src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,19 @@ body {
width: 100%;
height: 100%;
}

@include respond-to(large) {

body,
html {
font-size: 68.5%;
}
}

@include respond-to(extra-large) {

body,
html {
font-size: 130%;
}
}
3 changes: 2 additions & 1 deletion src/theme/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
$breakpoints: ('small' : (min-width: 767px),
'medium' : (min-width: 992px),
'large' : (min-width: 1200px));
'large' : (min-width: 1200px),
'extra-large' : (min-width: 2000px));

$fz-base: 1rem !default;
$fz-lg: $fz-base * 1.25 !default;
Expand Down

0 comments on commit 80a0f76

Please sign in to comment.