Skip to content

Commit bb7d8d4

Browse files
committed
fix: tailwind default button and img style
1 parent acab60f commit bb7d8d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/layout/header/header.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function Header() {
1313
<div id="header-wrapper">
1414
<div className="header-brand">
1515
<div className="header-logo">
16-
<img alt={Dictionary.homepage} src={logo} />
16+
<img alt={Dictionary.homepage} src={logo} className="inline" />
1717
</div>
1818
<h2>
1919
<Link className="header-homepage" to="/">

src/layout/questionnaire-list/components/questionnaire-list-item.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function QuestionnaireListItem({
6767
) ? (
6868
<button
6969
type="button"
70-
className={BUTTON_DUPLICATE_CLASS}
70+
className={`${BUTTON_DUPLICATE_CLASS} px-2 py-1 bg-[#E9E9ED] hover:bg-[#D0D0D7] hover:active:bg-[#B1B1B9] border rounded-lg border-[#a3a3a5] hover:border-[#727273] hover:active:border-[#414142]`}
7171
aria-label={actionLabel}
7272
onClick={(event) => {
7373
if (isHome) event.preventDefault();

0 commit comments

Comments
 (0)