1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- @import '@/styles/var.scss';
- .salary {
- height: 100%;
- display: flex;
- overflow: hidden;
- .salary-table {
- @include f-direction;
- }
- }
- .submit {
- padding: 0.5rem 1.875rem;
- // margin-top: 1.25rem;
- }
- .form-card {
- overflow: auto;
- .form-card-right,
- .form-card-left {
- display: flex;
- flex-direction: column;
- }
- .form-card-right {
- align-items: end;
- }
- .form-card-left {
- align-items: start;
- }
- }
- .d-flex {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-wrap: nowrap;
- }
- .justify-start {
- justify-content: start;
- }
- .input-suffix {
- width: 100%;
- flex-direction: column;
- .w-50 {
- width: 12.5rem;
- }
- .inline-flex {
- white-space: nowrap;
- display: inline-flex;
- }
- }
- .title {
- text-align: center;
- }
- .info-content {
- display: flex;
- color: #303133;
- .info-name {
- display: flex;
- flex-direction: column;
- padding-left: 0.75rem;
- span:first-child {
- margin-right: 2rem;
- }
- }
- }
- .b-r,
- .form-card {
- border-radius: 8px;
- }
- .demonstration {
- margin-left: 8px;
- }
|