Product Features
@@ -176,6 +179,10 @@
.signUp{
flex: 1;
padding: 0rem 4rem;
+ @media (max-width: 768px) {
+ display: flex;
+ flex-direction: column;
+ }
.back{
font-size: 1.6rem;
margin-bottom: 3rem;
@@ -193,6 +200,19 @@
.introduce{
font-size: 2.4rem;
text-decoration: underline;
+ }
+ .selectSignUp{
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+ @media (max-width: 768px) {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ }
+ }
+ .gallery_list_box{
+
}
.gallery_list{
display: flex;
@@ -200,7 +220,10 @@
justify-content: center;
flex-wrap: wrap;
.gallery_item{
- width: calc(33.333% - 3rem);
+ width: 100%;
+ @media (min-width: 768px) {
+ width: calc(33.333% - 3rem);
+ }
.title,.info,.highlight{
font-weight: 600;
}
diff --git a/src/views/LoginPage.vue b/src/views/LoginPage.vue
index 28d2b9aa..ec50e5f1 100644
--- a/src/views/LoginPage.vue
+++ b/src/views/LoginPage.vue
@@ -700,6 +700,8 @@ export default defineComponent({
padding-right: 20rem;
@media (max-width: 768px) {
width: 100%;
+ padding-right: 0;
+ padding: 0 10rem;
}
.login_form_email {
position: relative;