| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .container {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-content: center;
- align-items: center;
- .topView {
- position: sticky;
- top: 0;
- z-index: 999;
- width: 100%;
- }
- .contract-info, .address-info, .invoice-info {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-content: center;
- align-items: center;
- margin-bottom: 10px;
- width: 95%;
- text {
- width: 80px;
- color: #333;
- font-size: 14px;
- }
- textarea {
- border: 1px solid #f0f0f0;
- border-radius: 10px;
- color: #333;
- padding: 10px;
- margin-right: 5px;
- font-size: 14px;
- }
- }
- .contract-info {
- margin-top: 10px;
- }
- .button-view {
- border-radius: 10px;
- width: 95%;
- padding-top: 15px;
- display: flex;
- flex-direction: row;
- align-content: center;
- align-items: center;
- justify-content: space-between;
- van-button {
- width: 100%;
- }
- }
- }
|