Skip to content

Commit

Permalink
webapp: Remove redundant main container
Browse files Browse the repository at this point in the history
  • Loading branch information
nkappler authored and tbnobody committed Jan 18, 2024
1 parent 72a2c58 commit bfeb852
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions webapp/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<template>
<NavBar />
<main class="container-fluid">
<router-view />
</main>
<router-view />
</template>

<script lang="ts">
Expand Down

1 comment on commit bfeb852

@f-1-0
Copy link

@f-1-0 f-1-0 commented on bfeb852 Jan 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This broke the previous fix #1440 again since it used the 'main' html tag as a selector. I suggest to use the two classes to be a bit more specific,
this excludes the nav bar and other pages.

.container-fluid .row 
{font-feature-settings: "tnum" 1;}

Please sign in to comment.