question_uniapp/style/common.scss
2025-06-06 03:08:19 +08:00

34 lines
535 B
SCSS

@import '@/style/mixin.scss';
@font-face {
font-family: 'Poppins';
src: url('@/static/fonts/Poppins/Poppins-Light.otf') format('opentype');
}
view,
page,
text,
button,
image,
textarea,
scroll-view,input {
box-sizing: border-box;
font-family: 'Poppins', sans-serif;;
}
image {
display: block;
}
button {
margin: 0;
padding: 0;
background-color: #FFFF;
}
button::after {
border: none;
}
// 主题背景色
.themeBgColor {
background-color: $themeColor;
}
// 主题字体色
.themeFontColor {
color: $themeColor !important;
}