Skip to content

Commit d5b6d28

Browse files
committed
style(font): changed to default system font
1 parent 26fccd7 commit d5b6d28

File tree

5 files changed

+17
-23
lines changed

5 files changed

+17
-23
lines changed

src/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
<title>InkBucket</title>
77
<base href="/">
88
<meta name="viewport" content="width=device-width, initial-scale=1">
9-
<!-- <link href="https://fonts.googleapis.com/css?family=Rubik:300,400,500,700" rel="stylesheet"> -->
109
<link rel="icon" type="image/x-icon" href="favicon.ico">
1110
</head>
1211

src/styles/_config.scss

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@ $ink--base-font-size: 14px;
22
$ink--base-font-size-xl: 16px;
33
$ink--app-name: 'INK BUCKET';
44
$ink--debug: false;
5-
$ink--font-family: 'Rubik', 'Inter UI', 'Nunito Sans', 'Roboto';
6-
$ink--font-family-asap: 'Asap', 'Roboto';
5+
$ink--font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif,
6+
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Rubik', 'Inter UI', 'Nunito Sans';
77
$ink--font-family-monospace: 'Courier New', 'Lucida Console', Monaco, Courier, monospace;
8-
$ink--font-family-roboto: 'Roboto', 'sans-serif';
9-
$ink--font-family-roboto: 'Roboto', 'sans-serif';
108
$ink--current-theme: 'DEFAULT';
119
$ink--themes: (
1210
'default': 'DEFAULT',

src/styles/base/_utility.scss

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,30 @@
11
.doc-util-flex-2 {
2-
flex: 2 !important;
2+
flex: 2 !important;
33
}
44

55
.doc-util-valign-middle {
6-
display: flex;
7-
flex-direction: column;
8-
justify-content: center;
6+
display: flex;
7+
flex-direction: column;
8+
justify-content: center;
99
}
1010

1111
.doc-util-tt-lowercase {
12-
text-transform: lowercase;
12+
text-transform: lowercase;
1313
}
1414

15-
.doc-util-cover-span{
16-
display:flex;
17-
flex-direction: column;
15+
.doc-util-cover-span {
16+
display: flex;
17+
flex-direction: column;
1818
}
1919

20-
.doc-util-cursor-pointer{
21-
cursor: pointer;
20+
.doc-util-cursor-pointer {
21+
cursor: pointer;
2222
}
2323

24-
.doc-util-pos-right{
25-
right: 0;
26-
left: auto !important;
24+
.doc-util-pos-right {
25+
right: 0;
26+
left: auto !important;
2727
}
2828

29-
.ff-asap{
30-
font-family: $ink--font-family-asap;
31-
}
29+
.ff-asap {
30+
}

src/styles/components/_color-sticker.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,5 @@ $size: 4rem;
2525
font-weight: 500;
2626
color: transparentize($color: clr('dark'), $amount: 0.62);
2727
font-size: 0.9rem;
28-
font-family: $ink--font-family-roboto;
2928
}
3029
}

src/styles/components/_settings-item.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
justify-content: space-between;
55
margin: 1rem 0;
66
border-bottom: 1px solid clr('border');
7-
font-family: $ink--font-family-roboto;
87
padding: 1rem 0;
98
h5 {
109
font-size: 1.1rem;

0 commit comments

Comments
 (0)