forked from overture-stack/arranger
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
simple styling for login to access arranger components
- Loading branch information
Derek Luu
committed
Sep 6, 2023
1 parent
64ca9d6
commit a4552c3
Showing
2 changed files
with
50 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
body { | ||
margin: 0; | ||
} | ||
|
||
.arranger-login { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
padding-top: 35vh; | ||
height: 100vh; | ||
background-color: var(--primary-color-dark-5); | ||
} | ||
|
||
.arranger-login h2 { | ||
text-align: center; | ||
width: 100%; | ||
color: var(--white); | ||
} | ||
|
||
.arranger-login .ant-btn-default { | ||
background-color: transparent; | ||
border-color: var(--white); | ||
box-shadow: none; | ||
color: var(--white); | ||
} | ||
|
||
.arranger-login .ant-btn-default:hover { | ||
border-color: var(--white); | ||
color: var(--white); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters