Skip to content

Commit 4eec8d9

Browse files
committed
style: style of pages
1 parent 540ec9a commit 4eec8d9

8 files changed

+12
-9
lines changed

app/src/styles/404.module.scss

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@
2424
row-gap: 1rem;
2525

2626
padding: 3rem;
27-
28-
border-radius: 3rem;
27+
border-radius: vairables.$border-radius;
2928

3029
height: fit-content;
3130

app/src/styles/CommissionCard.module.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
background-color: variables.$white-background-color;
1212
flex-direction: column;
1313

14-
border-radius: 3rem;
14+
border-radius: variables.$border-radius;
1515
box-shadow: 0 4px 30px rgba(0, 0, 100, 0.3);
1616

1717
width: 100%;

app/src/styles/Gallery.module.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
.image {
3636
height: 100%;
3737
width: 100%;
38-
border-radius: 1rem;
38+
border-radius: variables.$small-border-radius;
3939
overflow: hidden;
4040
box-shadow: 0 4px 30px rgba(0, 0, 100, 0.3);
4141

app/src/styles/ListPage.module.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@
1919
width: 80%;
2020

2121
margin-top: variables.$navbar-height;
22+
margin-bottom: 5rem;
2223
padding: 2rem;
23-
border-radius: 3rem;
24+
border-radius: variables.$border-radius;
2425

2526
.title {
2627
display: inline-flex;

app/src/styles/MembersList.module.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
padding-bottom: 2rem;
1010

11-
border-radius: 3rem;
11+
border-radius: variables.$border-radius;
1212
background-color: variables.$white-background-color;
1313

1414
h1 {

app/src/styles/NewsCard.module.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
.newsCard {
44
background-color: variables.$white-background-color;
5-
border-radius: 3rem;
5+
border-radius: variables.$border-radius;
66

77
height: 100%;
88

app/src/styles/Page.module.scss

+1-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
min-width: 100vw;
4848

4949
padding-top: 3rem;
50-
padding-bottom: 4rem;
5150

5251
display: flex;
5352
flex-direction: column;
@@ -60,7 +59,7 @@
6059
width: 100%;
6160
height: 20rem;
6261

63-
border-radius: 3rem;
62+
border-radius: variables.$border-radius;
6463
overflow: hidden;
6564

6665
margin: 0;

app/src/styles/utilities/_variables.scss

+4
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,8 @@ $dark-title-color: #273183;
1212
$glass-color: rgba(100, 100, 255, 0.75);
1313
$glass-color-hover: rgba(122, 122, 238, 0.75);
1414

15+
$border-radius: 3rem;
16+
17+
$small-border-radius: 1rem;
18+
1519
$navbar-height: 4rem;

0 commit comments

Comments
 (0)