| 12345678910111213141516171819202122232425262728293031 |
- /* components/num-range/num-range.wxss */
- .content {
- display: flex;
- justify-content: space-between;
- height: 60%;
- align-items: center;
- align-content: center;
- }
- .left, .right {
- justify-content: space-between;
- padding: 0px 0px;
- border: 1px solid #ccc;
- align-items: center;
- align-content: center;
- height: 100%;
- border-radius: 10px;
- padding: 0px 0px 0px 10px;
- }
- .left text, .right text {
- text-align: right;
- width: 40px;
- height: 100%;
- padding-right: 10px;
- background-color: rosybrown;
- border-top-right-radius: 10px;
- border-bottom-right-radius: 10px;
- color: white;
- }
|