1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-08-07 06:37:01 +02:00

Fixing border rgba values for Modal page

Borders are missing a zero on the rgba values on the Modal page.
This commit is contained in:
Arthur Ariza
2022-06-14 01:04:19 -03:00
committed by GitHub
parent 791c61aeff
commit 28ab9876b9

View File

@@ -48,7 +48,7 @@ const Details: React.FC<{}> = () => {
css={` css={`
.modal { .modal {
/* Border */ /* Border */
border: 1px solid rgba(0, 0, 0.3); border: 1px solid rgba(0, 0, 0, 0.3);
border-radius: 4px; border-radius: 4px;
} }
@@ -56,7 +56,7 @@ const Details: React.FC<{}> = () => {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
/* Border */ /* Border */
border-bottom: 1px solid rgba(0, 0, 0.3); border-bottom: 1px solid rgba(0, 0, 0, 0.3);
} }
.modal__footer { .modal__footer {
@@ -64,7 +64,7 @@ const Details: React.FC<{}> = () => {
/* Push the buttons to the right */ /* Push the buttons to the right */
justify-content: flex-end; justify-content: flex-end;
/* Border */ /* Border */
border-top: 1px solid rgba(0, 0, 0.3); border-top: 1px solid rgba(0, 0, 0, 0.3);
} }
`} `}
> >