This commit is contained in:
2025-02-01 20:52:33 +05:30
parent b4001596d3
commit a5a54ccbdc
29277 changed files with 3016189 additions and 193 deletions

View File

@@ -341,7 +341,7 @@ body {
justify-content: space-between;
}
.google-btn, .apple-btn {
.google-btn {
width: 48%;
padding: 12px;
font-family: var(--button-font);
@@ -355,7 +355,7 @@ body {
cursor: pointer;
transition: background-color 0.3s, border-color 0.3s;
}
.google-btn:hover, .apple-btn:hover {
.google-btn:hover {
background-color: var(--hover-color);
}
@@ -364,6 +364,20 @@ body {
width: 20px;
height: 20px;
}
.apple-btn{
cursor: not-allowed;
width: 48%;
padding: 12px;
font-family: var(--button-font);
background-color: var(--left-bg);
color: var(--text-white);
border: 1px solid var(--button-color);
border-radius: 5px;
display: flex;
justify-content: center;
align-items: center;
transition: background-color 0.3s, border-color 0.3s;
}
@media (max-width: 990px) {
/* Adjust text sizes */

View File

@@ -323,7 +323,8 @@ body {
justify-content: space-between;
}
.google-btn, .apple-btn {
.google-btn {
width: 48%;
padding: 12px;
font-family: var(--button-font);
@@ -337,8 +338,7 @@ body {
cursor: pointer;
transition: background-color 0.3s, border-color 0.3s;
}
.google-btn:hover, .apple-btn:hover {
.google-btn:hover {
background-color: var(--hover-color);
}
@@ -347,3 +347,17 @@ body {
width: 20px;
height: 20px;
}
.apple-btn{
cursor: not-allowed;
width: 48%;
padding: 12px;
font-family: var(--button-font);
background-color: var(--left-bg);
color: var(--text-white);
border: 1px solid var(--button-color);
border-radius: 5px;
display: flex;
justify-content: center;
align-items: center;
transition: background-color 0.3s, border-color 0.3s;
}