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

MVP UI Fixes #316

Merged
merged 2 commits into from
Dec 7, 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 components/SearchBar.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="flex flex-0 w-128">
<div class="flex flex-0 max-w-4xl">
<div id="search-fields" class="grid-cols-3 mx-4">
<div class="search-specialty col-span-1 inline-block w-1/3 py-4">
<select v-model="selectedSpecialty" class="rounded-l-full rounded-r-none w-full px-1 border-2 border-primary/60
Expand Down
6 changes: 3 additions & 3 deletions components/TopNav.vue
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<template>
<div
class="p-4 border border-secondary-bg/20 flex justify-around items-center bg-gradient-to-t from-secondary-bg/30 via-primary-bg to-primary-bg"
class="p-4 pl-8 border border-secondary-bg/20 flex justify-between items-center bg-gradient-to-t from-secondary-bg/30 via-primary-bg to-primary-bg"
>
<HamburgerComponent />
<div class="font-semibold text-xl group transition-colors items-start">
<NuxtLink class="flex" to="/">
<svg
role="img"
title="site icon"
class="mr-1 w-10 h-10 align-middle fill-primary group-hover:fill-primary-hover"
class="mr-1 w-10 h-10 flex-shrink-0 align-middle fill-primary group-hover:fill-primary-hover"
>
<use xlink:href="../assets/images/site-logo.svg#site-logo-svg" />
</svg>
<div class="title-text flex flex-col" data-testid="logo">
<div class="title-text flex flex-col flex-shrink-0" data-testid="logo">
<div class="text-lg text-primary group-hover:text-primary-hover">Find a Doc</div>
<div class="text-sm text-primary leading-none group-hover:text-primary-hover">Japan</div>
</div>
Expand Down
Loading