12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .addImageBtn{
- display: flex;
- width: 110px;
- height: 110px;
- justify-content: center;
- align-items: center;
- border-radius: 10px;
- background: white;
- }
- .imageItem{
- .addImageBtn();
- position: relative;
- overflow: hidden;
- }
- .media{
- display: flex;
- width: 110px;
- height: 110px;
- align-items: center;
- justify-items: center;
- // line-height: 220px;
- font-size: 0;
- // vertical-align: middle;
- }
- .addImageBtnIcon{
- width: 20px;
- height: 20px;
- font-size: 20px;
- }
- .deleteButton{
- position: absolute;
- top: 0;
- right: 0;
- z-index: 1;
- width: 32px;
- height: 32px;
- left: 79px;
- border-top-right-radius: 8px;
- border-bottom-left-radius: 8px;
- padding: 8px;
- background-color: rgba(white, .85);
- }
|