cursor and border added to button

`cursor: pointer` property added to global button.  `close-button` class now has two new property to achieve design goal.
This commit is contained in:
Badiuzzaman 2023-05-02 22:10:33 +06:00
parent 05dfb0c45d
commit 20086b657b
2 changed files with 6 additions and 0 deletions

View File

@ -46,9 +46,12 @@ body {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
border: 1px solid #eee;
padding: 0;
} }
button { button {
cursor: pointer;
padding: 8px 16px; padding: 8px 16px;
border-radius: 8px; border-radius: 8px;
} }

View File

@ -46,9 +46,12 @@ body {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
border: 1px solid #eee;
padding: 0;
} }
button { button {
cursor: pointer;
padding: 8px 16px; padding: 8px 16px;
border-radius: 8px; border-radius: 8px;
} }