44 lines
1.0 KiB
SCSS
44 lines
1.0 KiB
SCSS
.company{
|
|
display: flex;
|
|
flex-direction: column;
|
|
.save-button{
|
|
width: 668px;
|
|
height: 82px;
|
|
background: #007aff;
|
|
border-radius: 40px;
|
|
font-size: 32px;
|
|
font-weight: 400;
|
|
color: #ffffff;
|
|
display: flex;align-items: center;justify-content: center;
|
|
margin: 320px auto 0;
|
|
}
|
|
|
|
.form-radio{
|
|
display: flex;
|
|
flex-wrap: wrap;align-items: center;
|
|
}
|
|
.form-radio view{
|
|
height: 54px;
|
|
background: #f0f0f0;
|
|
border-radius: 28px;
|
|
font-size: 24px;
|
|
font-weight: 400;
|
|
color: #707070;
|
|
padding: 10px 28px;
|
|
box-sizing: border-box;
|
|
display: flex;align-items: center;justify-content: center;
|
|
margin: 10px;
|
|
border: 2px solid #f0f0f0;
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 1;
|
|
overflow: hidden;
|
|
}
|
|
.form-radio .form-radio-active{
|
|
background: #ecf5ff;
|
|
border: 2px solid #cde5ff;
|
|
}
|
|
} |