1234567891011121314151617181920212223242526272829303132333435363738 |
- .from-room{
- font-size: 34px;
- padding-top: 30px;
- .flex{
- display: flex;
- margin: 10px 0;
- Input{
- width: 345px;
- border-radius: 15px;
- border: solid 1px rgb(121, 116, 116);
- margin-left: 70px;
- }
- .picker{
- width: 345px;
- border-radius: 15px;
- border: solid 1px rgb(121, 116, 116);
- }
- }
- }
- .cancel{
- width: 150px;
- height: 70px;
- display: inline-block;
- line-height: 70px;
- border-radius: 12px;
- font-size: 36px;
- margin-right: 20px;
- }
- .btn {
- width: 150px;
- height: 70px;
- background: #1A3B83;
- display: inline-block;
- line-height: 70px;
- border-radius: 12px;
- font-size: 36px;
- color: #fff;
- }
|