Skip to content

Commit

Permalink
moving app style into main.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Strogator committed Apr 24, 2024
1 parent 315ba50 commit c09a544
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 1 addition & 5 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,7 @@
</head>

<body>
<div id="app" style="min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;" >
</div>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>

Expand Down
7 changes: 7 additions & 0 deletions frontend/src/assets/main.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
@import './base.css';

#app {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
}

a {
text-decoration: none;
color: var(--miq-blue);
Expand Down

0 comments on commit c09a544

Please sign in to comment.