Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix firefox active tab highlight bug #328

Merged
merged 1 commit into from
May 13, 2024
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
2 changes: 1 addition & 1 deletion src/components/get_started/buildingListTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default {
return {
buildingPic: 'https://energy-dashboard.s3-us-west-2.amazonaws.com/images/buildingPic.jpg',
buildingStep1:
'When you click on the "Building List" tab, the page will automatically show you all of the buildings in alphabetical order. Scroll through the list to find what you\'re looking for!',
'When you click on the "Buildings" tab, the page will automatically show you all of the buildings in alphabetical order. Scroll through the list to find what you\'re looking for!',
buildingStep2: 'Click on a category to see what buildings are in each category.',
buildingStep3:
'You can type out a building name in the search bar. It must be spelled correctly for the building to show up.'
Expand Down
2 changes: 1 addition & 1 deletion src/components/get_started/mainDescription.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</el-row>
<el-divider class="divider" content-position="left"> How To Use The "Map" Tab </el-divider>
<mapTab />
<el-divider class="divider" content-position="left"> How To Use The "Building List" Tab </el-divider>
<el-divider class="divider" content-position="left"> How To Use The "Buildings" Tab </el-divider>
<buildingListTab />
</div>
</template>
Expand Down
4 changes: 1 addition & 3 deletions src/components/navBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<ul class="nav-items">
<li class="navLi"><router-link to="/map" class="navLink">Map</router-link></li>
<li class="navLi">
<router-link to="/buildings" class="navLink">Building List</router-link>
<router-link to="/buildings" class="navLink">Buildings</router-link>
</li>
<li class="navLi">
<router-link to="/campaigns" class="navLink">Campaigns</router-link>
Expand Down Expand Up @@ -87,8 +87,6 @@ i {
padding-top: 28px;
padding-right: 10px;
padding-left: 10px;
margin-left: -10px;
margin-right: -10px;
}
.logo {
padding-top: 10px;
Expand Down
Loading