-
Notifications
You must be signed in to change notification settings - Fork 0
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
サイドバーがヘッダーを覆うように修正 #401
サイドバーがヘッダーを覆うように修正 #401
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここだけ確認お願いします!
import NavigationLinks from './NavigationLinks.vue' | ||
import NavigationBarFooter from './NavigationBarFooter.vue' | ||
import Icon from '../UI/Icon.vue' | ||
|
||
const a = defineModel<boolean>({ required: true }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
こんな感じで修正しておいてください!
const a = defineModel<boolean>({ required: true }) | |
const isSidebarOpen = defineModel<boolean>({ required: true }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
改めてになってすみません!
これもお願いします!
それ以外は良さそうです
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
動作確認もできました!
ありがとう!良さそうです
User description
close #297
PR Type
Enhancement
Description
top: 5rem
のスタイルを削除し、サイドバーの表示が改善されました。.list
にflex-grow: 1
を追加しました。Changes walkthrough 📝
App.vue
Adjust sidebar to fully cover the header
src/App.vue
top: 5rem
style from.navigationBarCover
and.navigationBar
to ensure the sidebar fully covers the header.v-model
binding tonavigation-bar
for better two-way databinding.
NavigationBar.vue
Add close button and update navigation bar layout
src/components/NavigationBar/NavigationBar.vue
closeContainer
style for the close button layout.justify-content: space-between
.NavigationLinks.vue
Improve navigation links layout flexibility
src/components/NavigationBar/NavigationLinks.vue
flex-grow: 1
to.list
for better layout flexibility.