Skip to content

Commit 78432b7

Browse files
committed
First release
1 parent 167abe7 commit 78432b7

File tree

14 files changed

+264
-135
lines changed

14 files changed

+264
-135
lines changed

package-lock.json

Lines changed: 55 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"bootstrap-reboot": "^4.4.1",
1111
"core-js": "^3.6.5",
1212
"css-mqpacker-starter": "^1.0.1",
13+
"nprogress": "^0.2.0",
1314
"vue": "^2.6.11",
1415
"vue-router": "^3.2.0",
1516
"vuex": "^3.4.0"

src/App.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@
99
min-height: 100vh;
1010
display: flex;
1111
align-items: center;
12+
padding: 30px 0 20px;
1213
}
1314
</style>

src/components/General/AModal.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ export default {
1717
},
1818
},
1919
render(h) {
20-
console.log("modal!");
21-
2220
let content = [
2321
h(
2422
"div",
@@ -118,13 +116,15 @@ export default {
118116
.a-modal-header h3 {
119117
text-transform: uppercase;
120118
text-align: center;
121-
font-size: 28px;
119+
font-size: 1em;
122120
margin-bottom: 10px;
123121
}
124122
125123
.a-modal-content {
126124
overflow-y: auto;
127125
max-height: 100%;
126+
font-size: 1em;
127+
128128
@include custom-scroll();
129129
}
130130
</style>

src/components/Сontrols/ABtn.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,15 @@ export default {
3232
</script>
3333

3434
<style scoped lang="scss">
35+
@import "~css-mqpacker-starter";
36+
3537
.a-btn {
3638
color: white;
3739
background-color: black;
3840
border-radius: 15px;
3941
border: none;
4042
padding: 15px 50px;
41-
font-size: 24px;
43+
font-size: 0.85em;
4244
text-transform: uppercase;
4345
cursor: pointer;
4446
transition: all 0.3s;

src/components/Сontrols/ATextfield.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ export default {
8484
min-width: 0;
8585
width: auto;
8686
flex-grow: 1;
87+
position: relative;
88+
z-index: 4;
8789
@include placeholder(rgba(0, 0, 0, 0.25));
8890
&--centered {
8991
text-align: center;

src/components/Сontrols/ControlIcon.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ export default {
3030
text-align: center;
3131
align-items: center;
3232
height: 34px;
33-
width: 34px;
33+
min-width: 34px;
34+
padding: 0 4px;
3435
cursor: pointer;
3536
transition: all 0.2s;
3637
border: 2px solid #000;

src/scss/main.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
@import "~bootstrap-reboot";
22
@import "~css-mqpacker-starter";
33
@import "fonts";
4+
@import "util/nprogress";
45

56
body {
67
font-family: "fucken", "fuckru", "IndieFlower";
@@ -34,3 +35,9 @@ textarea {
3435
.w-100 {
3536
width: 100%;
3637
}
38+
39+
@include md {
40+
body {
41+
font-size: 22px;
42+
}
43+
}

src/scss/media.scss

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/scss/util/nprogress.scss

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
@import "~nprogress/nprogress.css";
2+
3+
#nprogress .bar {
4+
//background: #000;
5+
height: 3px;
6+
//box-shadow: 0 0 7px #000, 0 0 16px #000;
7+
}
8+
#nprogress .peg {
9+
//box-shadow: 0 0 10px #000, 0 0 5px #000;
10+
}
11+
#nprogress .spinner-icon {
12+
//border-top-color: #000;
13+
//border-left-color: #000;
14+
}

0 commit comments

Comments
 (0)