Skip to content

Commit c44f6d1

Browse files
committed
Add view with tab items
1 parent 6947a76 commit c44f6d1

33 files changed

+258
-64
lines changed

.prettierrc.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
singleQuote: true
2+
trailingComma: all
3+
endOfLine: lf
4+
printWidth: 120
5+
tabWidth: 2
6+
singleAttributePerLine: true
7+
arrowParens: avoid

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
"script:zip": "powershell scripts/zip.ps1"
1616
},
1717
"dependencies": {
18-
"pinia": "^2.0.34",
19-
"tailwind": "^4.0.0",
2018
"vue": "^3.2.47"
2119
},
2220
"devDependencies": {

src/assets/css/main.css

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
::-webkit-scrollbar-track {
2+
border-radius: 10px;
3+
background-color: #F5F5F5;
4+
}
5+
6+
::-webkit-scrollbar {
7+
width: 7px;
8+
background-color: #F5F5F5;
9+
}
10+
11+
::-webkit-scrollbar-thumb {
12+
border-radius: 10px;
13+
background-color: #7c7c7c;
14+
}
15+
16+
.float-right{
17+
float: right;
18+
}
19+
.display-inline-block{
20+
display: inline-block;
21+
}
22+
.ml-10{
23+
margin-left: 10px;
24+
}
25+
.text-right{
26+
text-align: right;
27+
}

src/assets/icons/dark-mode.svg

Lines changed: 2 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)