Skip to content

Commit

Permalink
スタイルを調整
Browse files Browse the repository at this point in the history
  • Loading branch information
world29 committed Jan 29, 2024
1 parent 31c1212 commit efaeabc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
5 changes: 3 additions & 2 deletions src/renderer/styles/BookList.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
}

.bookWrapper {
border-radius: 10px;
border-radius: 8px;
overflow: hidden;
background-color: #ddd;
background-color: #fff;
box-shadow: 0 0 0.2em 1px #ddd;
}

.bookWrapper > .thumbnail {
Expand Down
14 changes: 6 additions & 8 deletions src/renderer/styles/Nav.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
justify-content: space-between;
align-items: center;
padding: 10px;
background-color: #ccc; /* ナビゲーションバーの背景色 */
color: #fff; /* テキストカラー */
background-color: #fff;
}

/* 検索フォームのスタイル */
Expand All @@ -31,17 +30,16 @@
border: 1px solid #ccc;
}

/* ボタンのスタイル */
.button {
padding: 8px 16px;
margin-left: 8px;
background-color: #007bff; /* ボタンの背景色 */
color: #fff; /* ボタンのテキストカラー */
border: none;
background-color: #fff;
color: #333;
border: 1px solid #333;
border-radius: 3px;
cursor: pointer;
}

/* ボタンホバー時のスタイル */
.button:hover {
background-color: #0056b3; /* ホバー時の背景色 */
background-color: #333;
}

0 comments on commit efaeabc

Please sign in to comment.