Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@

- Allow to display full lyrics of a song.
- Add a return button in user edit page.
- Fonts are now bundled with the release archive.

### Changed

Expand Down
12 changes: 4 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,22 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<title>Dakara</title>
<meta name="apple-mobile-web-app-title" content="Dakara">
<meta name="application-name" content="Dakara">
<meta name="description" content="Dakara web client" />

<!-- Design -->
<link rel="stylesheet"
href="https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,200,700,300" type="text/css">

<!--Favicons-->
<link rel="apple-touch-icon" sizes="120x120" href="/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png">
<link rel="mask-icon" href="/favicons/safari-pinned-tab.svg" color="#8612a1">
<link rel="shortcut icon" href="/favicons/favicon.ico">

<meta name="apple-mobile-web-app-title" content="Dakara">
<meta name="application-name" content="Dakara">
<!--Color-->
<meta name="color-scheme" content="dark">
<meta name="theme-color" content="#8612a1">

<link rel="manifest" href="/manifest.json">
<meta name="msapplication-config" content="/browserconfig.xml">
</head>
Expand Down
17 changes: 17 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@
"lint-css"
],
"dependencies": {
"@fontsource/roboto": "^5.3.0",
"classnames": "^2.5.1",
"color-convert": "^3.1.3",
"dayjs": "^1.11.21",
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"embla-carousel-wheel-gestures": "^8.1.0",
"line-awesome": "^1.3.0",
"prop-types": "^15.8.1",
"query-string": "^9.4.0",
"react": "^19.2.7",
Expand Down
11 changes: 10 additions & 1 deletion src/style/thirdparty/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,14 @@
// Third party style file
//

@use 'normalize.css/normalize.css';
@forward 'normalize.css/normalize.css';

@forward '@fontsource/roboto/200.css';
@forward '@fontsource/roboto/300.css';
@forward '@fontsource/roboto/400.css';
@forward '@fontsource/roboto/700.css';
@forward '@fontsource/roboto/700.css';

@forward 'line-awesome/dist/line-awesome/css/line-awesome.min.css';

@use 'preboot';
Loading