pay-employee/src/pages/me/style.scss

21 lines
652 B
SCSS
Raw Normal View History

2025-07-16 09:34:46 +08:00
page {
background-color: #f8f8f8;
2025-07-08 16:49:39 +08:00
}
.contact_btn {
border: none !important; /* 去掉边框 */
background-color: transparent; /* 去掉背景色 */
padding: 0; /* 去掉内边距 */
line-height: 1; /* 设置行高 */
color: inherit; /* 继承父元素的颜色 */
font-size: inherit; /* 继承父元素的字体大小 */
display: inline-flex; /* 设置为行内弹性盒子,以便更好地控制布局 */
align-items: center; /* 垂直居中 */
justify-content: center; /* 水平居中 */
outline: none; /* 去掉轮廓 */
box-shadow: none; /* 去掉阴影 */
}
button:after {
border: none !important; /* 去掉边框 */
}