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

bugfix: link to main github page in footer, small css fix for mobile view #31

Merged
merged 1 commit into from
Jul 17, 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
4 changes: 2 additions & 2 deletions src/components/NavigationFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
aria-label="mitre engenuity youtube">
<i class="pi pi-youtube"></i>
</a>
<a href="https://github.com/center-for-threat-informed-defense/mappings-explorer" target="blank"
class="github" aria-label="ctid github">
<a href="https://github.com/center-for-threat-informed-defense/" target="blank" class="github"
aria-label="ctid github">
<i class="pi pi-github"></i>
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ h1, h2, h3, h4, h5, h6 {
@apply bg-ctid-navy
}
.p-selectbutton .p-button.p-component {
@apply uppercase border-[1px] border-ctid-black rounded-none mx-1
@apply uppercase border-[1px] border-ctid-black rounded-none mx-[-1px] sm:mx-1 md:mx-[-1px] lg:mx-1
}
.p-selectbutton .p-highlight.p-button.p-component {
@apply bg-ctid-navy text-white
Expand Down
Loading