Skip to content
Snippets Groups Projects
Commit 5adbf77b authored by jojohoch's avatar jojohoch
Browse files

Replace CSS import rules in styles.css with import links in index.html

parent 5f6109d7
No related branches found
No related tags found
No related merge requests found
@import './roboto.css';
@import './material-icons.css';
@import './ptsans.css';
@import './notoSansSymbols2.css';
body {
margin: 0;
font-family: 'Roboto', sans-serif
......
......@@ -40,6 +40,7 @@
}
</script>
<link rel="stylesheet" href="editor.css">
<link href="editor/assets/common-styles.css" rel="stylesheet">
<link href="editor/assets/roboto.css" rel="stylesheet">
<link href="editor/assets/ptsans.css" rel="stylesheet">
<link href="editor/assets/notoSansSymbols2.css" rel="stylesheet">
......
......@@ -6,6 +6,11 @@
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="assets/common-styles.css" rel="stylesheet">
<link href="assets/roboto.css" rel="stylesheet">
<link href="assets/ptsans.css" rel="stylesheet">
<link href="assets/notoSansSymbols2.css" rel="stylesheet">
<link href="assets/material-icons.css" rel="stylesheet">
</head>
<body>
<aspect-editor></aspect-editor>
......
@import '../../common/assets/styles.css';
html, body { height: 100%; }
.mat-expansion-panel-content {font: unset !important;}
......
......@@ -44,6 +44,7 @@
}
</script>
<link rel="stylesheet" href="player.css">
<link href="player/assets/common-styles.css" rel="stylesheet">
<link href="player/assets/roboto.css" rel="stylesheet">
<link href="player/assets/ptsans.css" rel="stylesheet">
<link href="player/assets/notoSansSymbols2.css" rel="stylesheet">
......
......@@ -39,6 +39,11 @@
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="assets/common-styles.css" rel="stylesheet">
<link href="assets/roboto.css" rel="stylesheet">
<link href="assets/ptsans.css" rel="stylesheet">
<link href="assets/notoSansSymbols2.css" rel="stylesheet">
<link href="assets/material-icons.css" rel="stylesheet">
</head>
<body>
<aspect-player></aspect-player>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment