12345678910111213141516171819202122232425 |
- /**app.wxss**/
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- /* padding: 200rpx 0; */
- box-sizing: border-box;
- }
- .custom-info-btn{
- padding: 5px 25px;
- width: auto;
- height: auto;
- display: flex;
- justify-content: center;
- border-radius: 3px;
- background-color: #7a7777;
- }
- .custom-info-btn:active{
- background-color: #c2b8b8;
- box-shadow: 1px 1px 5px black;
- }
|