mirror of
https://github.com/heyarne/airsonic-ui.git
synced 2026-05-07 02:33:39 +02:00
Move all source files to src folder
This commit is contained in:
parent
cdf3785f82
commit
47c37e198c
20 changed files with 24 additions and 9 deletions
14
src/html/index.html
Normal file
14
src/html/index.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Airsonic</title>
|
||||
<link rel="stylesheet" href="/app/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script src="/app/js/main.js"></script>
|
||||
<script>airsonic_ui.core.init()</script>
|
||||
</body>
|
||||
</html>
|
||||
16
src/sass/app.sass
Normal file
16
src/sass/app.sass
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
@import "../../node_modules/bulma/bulma"
|
||||
|
||||
.progress.is-tiny
|
||||
height: 0.25rem
|
||||
|
||||
.image.is-256x256
|
||||
// for cover images
|
||||
width: 256px
|
||||
height: 256px
|
||||
|
||||
.album-preview .image.is-256x256
|
||||
// make sure the grid doesn't overflow
|
||||
width: auto
|
||||
height: auto
|
||||
max-width: 256px
|
||||
max-height: 256px
|
||||
Loading…
Add table
Add a link
Reference in a new issue