Skip to content

Commit

Permalink
distディレクトリを更新
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Feb 18, 2025
1 parent 1729e41 commit 3fba502
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions dist/components/button/button.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@

.base {
display: inline-block;
width: 100%;
flex-basis: 100%;
padding-block :2px;
border: 1px solid transparent;
border-radius: 6px;
position: relative;
cursor: pointer;
text-align: center;

&:disabled {
cursor: not-allowed;
Expand Down Expand Up @@ -90,16 +93,14 @@
}

.normal.primary {
background-color: #282828;
border-color: #282828;
background-color: rgb(0 0 0 / 84%);

.text {
color: #fff;
}

&:hover {
background-color: #191919;
border-color: #191919;
background-color: rgb(0 0 0 / 90%);
}

&:active {
Expand All @@ -115,11 +116,11 @@
}

&:hover {
background-color: #F5F5F5;
background-color: rgb(0 0 0 / 4%);
}

&:active {
background-color: #EDEDED;
background-color: rgb(0 0 0 / 7%);
}
}

Expand All @@ -131,25 +132,23 @@
}

&:hover {
background-color: #F5F5F5;
background-color: rgb(0 0 0 / 4%);
}

&:active {
background-color: #EDEDED;
background-color: rgb(0 0 0 / 7%);
}
}

.danger.primary {
background-color: #DB351F;
border-color: #DB351F;

.text {
color: #fff;
}

&:hover {
background-color: #C92812;
border-color: #C92812;
}

&:active {
Expand Down

0 comments on commit 3fba502

Please sign in to comment.