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

1928 reduce padding in nav bar, update details button text #2322

Merged
merged 5 commits into from
Dec 8, 2023
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 packages/client/src/components/Layout.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<b-navbar :type="navBarType" :variant="navBarVariant" class="header-dropshadow py-3">
<b-navbar :type="navBarType" :variant="navBarVariant" class="header-dropshadow py-1">
<b-navbar-brand href="/#/grants" class="d-flex align-items-center">
<b-img v-if="myProfileEnabled" :src="require('../assets/usdr_logo_standard_wide.svg')" style="height: 2.5rem;" class="" alt="United States Digital Response - Home" />
<b-img v-else :src="require('../assets/usdr_logo_white_wide.svg')" style="height: 2.5rem;" class="" alt="United States Digital Response - Home" />
Expand Down
4 changes: 2 additions & 2 deletions packages/client/src/components/Modals/GrantDetails.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- eslint-disable max-len -->
<template>
<b-modal v-model="showDialog" ok-only :title="selectedGrant && selectedGrant.grant_number" @hide="resetSelectedGrant"
scrollable size="xl">
<b-modal v-model="showDialog" ok-only :title="selectedGrant && selectedGrant.grant_number"
@hide="resetSelectedGrant" scrollable size="xl" ok-title="Close">
<div v-if="selectedGrant">
<b-row class="mb-3 d-flex align-items-baseline">
<b-col cols="8">
Expand Down
Loading