Skip to content

Commit

Permalink
画面表示のための細かい修正
Browse files Browse the repository at this point in the history
  • Loading branch information
nek0meshi committed Nov 26, 2023
1 parent e919768 commit f162e9a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 20 deletions.
5 changes: 0 additions & 5 deletions v3/app.vue

This file was deleted.

16 changes: 2 additions & 14 deletions v3/components/page-parts/AppHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,7 @@
<header class="header fixed w-full" :class="headerClass">
<div class="header-wrap mx-auto text-white relative">
<ul
class="
flex flex-row
gap-4
justify-end
items-center
header-content header-links
"
class="flex flex-row gap-4 justify-end items-center header-content header-links"
>
<li v-for="link in links" :key="link.label">
<a class="header-link-a text-white" @click="scrollLink(link.href)">{{
Expand All @@ -17,13 +11,7 @@
</li>
</ul>
<nav
class="
flex flex-row
justify-end
items-center
header-content
hamburger-wrap
"
class="flex flex-row justify-end items-center header-content hamburger-wrap"
:class="hamburgerWrapClass"
>
<a class="hamburger" @click="clickHamburger">
Expand Down
2 changes: 1 addition & 1 deletion v3/components/page-parts/Hero.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
.hero-image {
width: 100%;
height: 100vh;
background-image: url('./static/hero.jpg');
background-image: url('./hero.jpg');
h1 {
color: #fff;
font-size: 72px;
Expand Down
1 change: 1 addition & 0 deletions v3/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { defineNuxtConfig } from 'nuxt/config'
export default defineNuxtConfig({
devtools: { enabled: true },
modules: ['@nuxtjs/tailwindcss'],
css: ['@/assets/scss/main.scss'],
vite: {
css: {
preprocessorOptions: {
Expand Down

0 comments on commit f162e9a

Please sign in to comment.