Skip to content

Commit e30ba41

Browse files
committed
lintify on develop
1 parent 91322bd commit e30ba41

File tree

15 files changed

+264
-278
lines changed

15 files changed

+264
-278
lines changed

.vscode/dictionaries/project-words.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ kmeans
4848
Kolkata
4949
letterpad
5050
linalg
51+
lintify
5152
lucide
5253
LXXX
5354
Madhyam

src/assets/styles/board.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@
7676
padding: 0 0.5rem;
7777
}
7878
}
79-
}
79+
}

src/assets/styles/bubble.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
padding: 0;
44
box-sizing: border-box;
55
container-type: inline-size;
6-
container-name: bubble
6+
container-name: bubble;
77
}
88

99
.bubble__board {
@@ -25,7 +25,7 @@
2525
align-items: center;
2626
}
2727

28-
.slot>div {
28+
.slot > div {
2929
font-size: 3rem;
3030
position: relative;
3131
font-weight: 700;
@@ -195,4 +195,4 @@
195195
transform: translateY(-1000px) rotate(720deg);
196196
border-radius: 50%;
197197
}
198-
}
198+
}

src/assets/styles/common.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@
6161
text-size-adjust: auto;
6262
text-shadow: #fc0 1px 0 10px;
6363
text-wrap-style: balance;
64-
}
64+
}

src/assets/styles/header.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
}
6666
}
6767

68-
6968
.action-group {
7069
display: flex;
7170
gap: 1rem;
@@ -99,4 +98,4 @@
9998
.header-spacer {
10099
min-height: 5rem;
101100
border-bottom: 1px dotted grey;
102-
}
101+
}

src/assets/styles/poem-card.css

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,32 +63,32 @@
6363
}
6464

6565
/* Target every Nth .poem-card inside .container__card */
66-
.container__card>.card-wrapper:nth-child(6n + 1) .poem-card,
66+
.container__card > .card-wrapper:nth-child(6n + 1) .poem-card,
6767
.card-wrapper:nth-child(6n + 1) .poem-card .emoji-content .overlay::after {
6868
background-color: var(--poem-bg-1);
6969
}
7070

71-
.container__card>.card-wrapper:nth-child(6n + 2) .poem-card,
71+
.container__card > .card-wrapper:nth-child(6n + 2) .poem-card,
7272
.card-wrapper:nth-child(6n + 2) .poem-card .emoji-content .overlay::after {
7373
background-color: var(--poem-bg-2);
7474
}
7575

76-
.container__card>.card-wrapper:nth-child(6n + 3) .poem-card,
76+
.container__card > .card-wrapper:nth-child(6n + 3) .poem-card,
7777
.card-wrapper:nth-child(6n + 3) .poem-card .emoji-content .overlay::after {
7878
background-color: var(--poem-bg-3);
7979
}
8080

81-
.container__card>.card-wrapper:nth-child(6n + 4) .poem-card,
81+
.container__card > .card-wrapper:nth-child(6n + 4) .poem-card,
8282
.card-wrapper:nth-child(6n + 4) .poem-card .emoji-content .overlay::after {
8383
background-color: var(--poem-bg-4);
8484
}
8585

86-
.container__card>.card-wrapper:nth-child(6n + 5) .poem-card,
86+
.container__card > .card-wrapper:nth-child(6n + 5) .poem-card,
8787
.card-wrapper:nth-child(6n + 5) .poem-card .emoji-content .overlay::after {
8888
background-color: var(--poem-bg-5);
8989
}
9090

91-
.container__card>.card-wrapper:nth-child(6n) .poem-card,
91+
.container__card > .card-wrapper:nth-child(6n) .poem-card,
9292
.card-wrapper:nth-child(6n) .poem-card .emoji-content .overlay::after {
9393
background-color: var(--poem-bg-6);
9494
}
@@ -159,4 +159,4 @@
159159
margin-left: auto;
160160
right: 1rem;
161161
height: 24px;
162-
}
162+
}

src/assets/styles/poem-dialog.css

Lines changed: 96 additions & 96 deletions
Original file line numberDiff line numberDiff line change
@@ -1,96 +1,96 @@
1-
.poem-dialog {
2-
width: 540px;
3-
max-width: 90%;
4-
height: 600px;
5-
border: 3px solid var(--color);
6-
border-radius: 24px;
7-
background-color: var(--container-bg);
8-
padding: 1.5rem;
9-
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
10-
position: fixed;
11-
transform: translate(-50%, -50%);
12-
overflow: hidden;
13-
color: var(--color);
14-
}
15-
16-
/* === Modal Content === */
17-
.modal-content {
18-
display: flex;
19-
flex-direction: column;
20-
justify-content: flex-start;
21-
height: 100%;
22-
position: relative;
23-
}
24-
25-
/* === Top bar: speaker + close === */
26-
.modal-content>.model-buttons>button.speaker-btn,
27-
.modal-content>.model-buttons>button.close {
28-
background: none;
29-
border: none;
30-
padding: 0;
31-
cursor: pointer;
32-
width: 48px;
33-
height: 48px;
34-
}
35-
36-
.modal-content>.model-buttons>button svg {
37-
width: 44px;
38-
height: 44px;
39-
stroke: var(--color);
40-
fill: none;
41-
}
42-
43-
.modal-content>.model-buttons>button:focus {
44-
outline: none;
45-
box-shadow: none;
46-
}
47-
48-
.modal-content .model-buttons {
49-
display: flex;
50-
align-items: center;
51-
justify-content: space-between;
52-
}
53-
54-
/* === Title & Lines === */
55-
.modal-title {
56-
margin-top: 3.2rem;
57-
font-size: 3rem;
58-
font-weight: 600;
59-
text-align: center;
60-
}
61-
62-
.lines {
63-
white-space: pre-line;
64-
line-height: 1.6;
65-
padding: 0 1rem;
66-
overflow-y: auto;
67-
flex-grow: 1;
68-
font-size: 1.5rem;
69-
text-align: center;
70-
}
71-
72-
/* === Scroll styling (optional) === */
73-
.lines::-webkit-scrollbar {
74-
width: 6px;
75-
}
76-
77-
.lines::-webkit-scrollbar-thumb {
78-
background: rgba(0, 0, 0, 0.2);
79-
border-radius: 3px;
80-
}
81-
82-
/* === Responsive === */
83-
@media (max-width: 480px) {
84-
.poem-dialog {
85-
width: 90%;
86-
height: 400px;
87-
}
88-
89-
.title {
90-
font-size: 1.25rem;
91-
}
92-
93-
.lines {
94-
font-size: 0.95rem;
95-
}
96-
}
1+
.poem-dialog {
2+
width: 540px;
3+
max-width: 90%;
4+
height: 600px;
5+
border: 3px solid var(--color);
6+
border-radius: 24px;
7+
background-color: var(--container-bg);
8+
padding: 1.5rem;
9+
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
10+
position: fixed;
11+
transform: translate(-50%, -50%);
12+
overflow: hidden;
13+
color: var(--color);
14+
}
15+
16+
/* === Modal Content === */
17+
.modal-content {
18+
display: flex;
19+
flex-direction: column;
20+
justify-content: flex-start;
21+
height: 100%;
22+
position: relative;
23+
}
24+
25+
/* === Top bar: speaker + close === */
26+
.modal-content > .model-buttons > button.speaker-btn,
27+
.modal-content > .model-buttons > button.close {
28+
background: none;
29+
border: none;
30+
padding: 0;
31+
cursor: pointer;
32+
width: 48px;
33+
height: 48px;
34+
}
35+
36+
.modal-content > .model-buttons > button svg {
37+
width: 44px;
38+
height: 44px;
39+
stroke: var(--color);
40+
fill: none;
41+
}
42+
43+
.modal-content > .model-buttons > button:focus {
44+
outline: none;
45+
box-shadow: none;
46+
}
47+
48+
.modal-content .model-buttons {
49+
display: flex;
50+
align-items: center;
51+
justify-content: space-between;
52+
}
53+
54+
/* === Title & Lines === */
55+
.modal-title {
56+
margin-top: 3.2rem;
57+
font-size: 3rem;
58+
font-weight: 600;
59+
text-align: center;
60+
}
61+
62+
.lines {
63+
white-space: pre-line;
64+
line-height: 1.6;
65+
padding: 0 1rem;
66+
overflow-y: auto;
67+
flex-grow: 1;
68+
font-size: 1.5rem;
69+
text-align: center;
70+
}
71+
72+
/* === Scroll styling (optional) === */
73+
.lines::-webkit-scrollbar {
74+
width: 6px;
75+
}
76+
77+
.lines::-webkit-scrollbar-thumb {
78+
background: rgba(0, 0, 0, 0.2);
79+
border-radius: 3px;
80+
}
81+
82+
/* === Responsive === */
83+
@media (max-width: 480px) {
84+
.poem-dialog {
85+
width: 90%;
86+
height: 400px;
87+
}
88+
89+
.title {
90+
font-size: 1.25rem;
91+
}
92+
93+
.lines {
94+
font-size: 0.95rem;
95+
}
96+
}

src/assets/styles/poems.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@
4040
.container__poems {
4141
font-family: "roboto", sans-serif;
4242
color: var(--color);
43-
}
43+
}

src/assets/styles/shortcut.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
font-size: 14px;
106106
}
107107
.shortcut-table tr {
108-
height: 2.2em; /* or use min-height if you prefer */
108+
height: 2.2em; /* or use min-height if you prefer */
109109
}
110110

111111
.shortcut-table td {
@@ -153,6 +153,6 @@
153153
.keys {
154154
text-align: end;
155155
}
156-
.rows{
157-
margin:3px
156+
.rows {
157+
margin: 3px;
158158
}

src/assets/styles/signup.css

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
--signup-button-social-bg-hover: #f0f2f5;
5656
}
5757

58-
5958
* {
6059
margin: 0;
6160
padding: 0;
@@ -128,7 +127,6 @@
128127
border-radius: 25px;
129128
}
130129

131-
132130
.form-only .signup-left {
133131
display: none;
134132
}
@@ -152,7 +150,6 @@
152150
margin-right: 5px;
153151
}
154152

155-
156153
.slider {
157154
width: 100%;
158155
height: 100%;
@@ -470,4 +467,4 @@ input[type="checkbox"] {
470467
.input-row .input-group {
471468
width: 100%;
472469
}
473-
}
470+
}

0 commit comments

Comments
 (0)