diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2024-09-03 00:08:53 +0300 |
|---|---|---|
| committer | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2024-09-03 00:08:53 +0300 |
| commit | a65d6d9127c3fa7f6a8ecaec5d1ffd1f47c2bc98 (patch) | |
| tree | edf8630e9d6426124dd49854af0cb703ebc5b710 /frontend/src/css/Login.css | |
| parent | fix: revert to static homepage (#195) (diff) | |
| download | lphub-a65d6d9127c3fa7f6a8ecaec5d1ffd1f47c2bc98.tar.gz lphub-a65d6d9127c3fa7f6a8ecaec5d1ffd1f47c2bc98.tar.bz2 lphub-a65d6d9127c3fa7f6a8ecaec5d1ffd1f47c2bc98.zip | |
refactor: port to typescript
Diffstat (limited to 'frontend/src/css/Login.css')
| -rw-r--r-- | frontend/src/css/Login.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/frontend/src/css/Login.css b/frontend/src/css/Login.css new file mode 100644 index 0000000..aa75f98 --- /dev/null +++ b/frontend/src/css/Login.css | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | span>img { | ||
| 2 | scale: 1.1; | ||
| 3 | padding: 4px 0 0 8px; | ||
| 4 | } | ||
| 5 | .login>button>span{ | ||
| 6 | max-width: 22ch; | ||
| 7 | overflow: hidden; | ||
| 8 | } | ||
| 9 | .login>button:nth-child(2){ | ||
| 10 | position: relative; | ||
| 11 | left: 210px; | ||
| 12 | width: 50px !important; | ||
| 13 | |||
| 14 | padding-left: 10px; | ||
| 15 | background-color: #00000000 !important; | ||
| 16 | /* transition: opacity .1s; */ | ||
| 17 | } | ||
| 18 | |||
| 19 | .login{ | ||
| 20 | display: grid; | ||
| 21 | grid-template-columns: 50px auto 200px ; | ||
| 22 | } | ||
| 23 | |||
| 24 | button:disabled { | ||
| 25 | display: none; | ||
| 26 | } \ No newline at end of file | ||