| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- @import "../../scssCommon.scss";
- .main {
- margin: 0 !important;
- }
- .userAddConnect {
- width: 100vw;
- height: 100vh;
- overflow-x: hidden;
- overflow-y: scroll;
- background-color: #fff;
- margin: 0;
- -webkit-overflow-scrolling: touch;
- position: relative;
- padding: pxtovw(13) pxtovw(10);
- .contentArea {
- .cellBox {
- &:nth-child(n+1) {
- margin-top: pxtovw(13);
- }
- .stitle {
- margin-top: pxtovw(2);
- height:pxtovw(20);
- font-size:pxtovw(14);
- font-weight:500;
- color:rgba(44,52,62,1);
- line-height:pxtovw(20);
- }
- input {
- margin-top: pxtovw(2);
- width: pxtovw(355);
- height: pxtovw(44);
- background: rgba(255, 255, 255, 1);
- border-radius: pxtovw(3);
- border:pxtovw(1) solid rgba(146,154,164,0.2);
- padding: pxtovw(15) pxtovw(10);
- }
- }
- .submitBtn {
- margin-top: pxtovw(40);
- width:pxtovw(352);
- height:pxtovw(46);
- background:rgba(48,142,255,1);
- box-shadow:0px pxtovw(2) pxtovw(6) 0px rgba(48,142,255,0.3);
- border-radius:pxtovw(2);
- display: flex;
- justify-content: center;
- align-items: center;
- cursor: pointer;
- p {
- height:pxtovw(20);
- font-size:pxtovw(14);
- font-weight:500;
- color:rgba(255,255,255,1);
- line-height:pxtovw(20);
- }
- }
- }
- }
|