Skip to content

Commit

Permalink
1928 reduce padding in nav bar, update details button text (#2322)
Browse files Browse the repository at this point in the history
* fix: #1928 Additional Grant Finder front-end enhancements

Layout.vue: Make the nav bar padding smaller
GrantDetails.vue: Change ok button text to "Close"
  • Loading branch information
adele-usdr authored Dec 8, 2023
1 parent 12c5c0b commit 2f7c0fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 2f7c0fe

Please sign in to comment.