Skip to content

Commit 892c3ad

Browse files
committed
small style fixes
1 parent 79ab656 commit 892c3ad

File tree

5 files changed

+21
-3
lines changed

5 files changed

+21
-3
lines changed

assets/css/styles.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front/src/styles/base.scss

+7-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@
1212
}
1313
p {
1414
margin-bottom: $space-normal;
15+
&.subtitle {
16+
font-weight: $bold;
17+
margin-top: -1rem;
18+
margin-bottom: 4rem;
19+
font-size: 1.4rem;
20+
}
1521
}
1622
.og-numbers {
1723
list-style: none;
@@ -43,7 +49,7 @@
4349

4450
.breadcrumbs {
4551
margin-bottom: $space-big;
46-
font-size: $size-7;
52+
font-size: 0.81rem;
4753
font-weight: $bold;
4854
.icon {
4955
margin: 0 $space-tiny;

front/src/styles/modules.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,11 @@
6868
}
6969
h3 {
7070
text-transform: uppercase;
71-
font-size: 1.3rem;
71+
font-size: 1.5rem;
7272
font-weight: $bold;
7373
}
7474
p {
75+
margin-bottom: 0;
7576
color: $black;
7677
font-size: $size-5;
7778
}

front/src/styles/variables.scss

+8
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,15 @@ $brown : #BD7800;
3131
$yellow : #FFF2DF;
3232
$gray-light : #DBDBDB;
3333
$grey-dark : #353535;
34+
$gray: #b0b0b0;
3435
$black : #000000;
3536

3637
$primary : $orange;
3738
$success : $light-green;
3839

3940
$link: $orange;
4041
$title-color: $black;
42+
$body-line-height: 1.6;
4143

4244

4345
$brand-colors: (
@@ -73,4 +75,10 @@ $brand-colors: (
7375
}
7476
@each $color-namespace, $brand-color in $brand-colors {
7577
@include color-classes($color-namespace, $brand-color);
78+
}
79+
80+
@mixin placeholder {
81+
&.placeholder { @content }
82+
&:-moz-placeholder { @content }
83+
&::-webkit-input-placeholder { @content }
7684
}

front/src/styles/widgets.scss

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@
3737
padding-top: 1.1rem;
3838
padding-bottom: 1.1rem;
3939
height: auto;
40+
@include placeholder {
41+
color: $gray;
42+
}
4043
}
4144
.button {
4245
padding-top: 1.1rem;

0 commit comments

Comments
 (0)