fix: 회원가입 , oauth 반응형 수정
This commit is contained in:
@@ -573,3 +573,33 @@
|
||||
height: 36px;
|
||||
}
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// Action Call Button (e.g. Signup, CTA)
|
||||
// -----------------------------------------------------------------------------
|
||||
.btn-action-primary {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: #2a69de;
|
||||
color: #fff;
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
padding: 16px 48px;
|
||||
border-radius: 10px;
|
||||
text-decoration: none;
|
||||
transition: background 0.2s, transform 0.2s;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
|
||||
&:hover {
|
||||
background: darken(#2a69de, 10%);
|
||||
transform: translateY(-2px);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
@include respond-to('sm') {
|
||||
font-size: 15px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user