fix colors and margin

This commit is contained in:
2026-07-17 00:05:01 +07:00
parent f36e1c2ce7
commit f368619471
2 changed files with 11 additions and 3 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
#app { #app {
max-width: 1280px; max-width: 1280px;
margin: 0 auto; margin: 40px auto;
padding: 2rem; padding: 2rem;
font-weight: normal; font-weight: normal;
} }
+10 -2
View File
@@ -73,6 +73,7 @@ const goToLogin = () => {
top: 0; top: 0;
left: 0; left: 0;
width: 100%; width: 100%;
height: 40px;
} }
.btn-login { .btn-login {
@@ -80,7 +81,6 @@ const goToLogin = () => {
top: 0; top: 0;
right: 0; right: 0;
padding: 8px 14px; padding: 8px 14px;
color: #ffffff;
cursor: pointer; cursor: pointer;
user-select: none; user-select: none;
} }
@@ -92,7 +92,7 @@ const goToLogin = () => {
.content-text { .content-text {
position: relative; position: relative;
top: 100px; top: 100px;
right: -500px; right: 0px;
} }
.key-icon { .key-icon {
@@ -109,4 +109,12 @@ const goToLogin = () => {
.gold-color { .gold-color {
color: gold; color: gold;
} }
@media (min-width: 1024px) {
.content-text {
position: relative;
top: 100px;
right: -500px;
}
}
</style> </style>