mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
style
This commit is contained in:
parent
1e0ab9d809
commit
d9fa2d3a8f
@ -6,6 +6,7 @@ dist
|
||||
.hbuilderx
|
||||
src/manifest.json
|
||||
src/pages.json
|
||||
src/tmui/
|
||||
*.sh
|
||||
node_modules
|
||||
*.md
|
||||
|
@ -55,12 +55,12 @@ web-view,
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
} @else {
|
||||
display: -webkit-box!important;
|
||||
display: -webkit-box !important;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
word-break: break-all;
|
||||
-webkit-line-clamp: $i;
|
||||
-webkit-box-orient: vertical!important;
|
||||
-webkit-box-orient: vertical !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,33 +1,33 @@
|
||||
// flex布局
|
||||
|
||||
$flex-directions: row,row-reverse,column,column-reverse;
|
||||
$flex-directions: row, row-reverse, column, column-reverse;
|
||||
@each $v in $flex-directions {
|
||||
.flex-#{$v} {
|
||||
@include flex($v);
|
||||
}
|
||||
}
|
||||
|
||||
$justify-content: start,end,center,between,around,evenly;
|
||||
$justify-content: start, end, center, between, around, evenly;
|
||||
@each $v in $justify-content {
|
||||
.justify-#{$v} {
|
||||
@if($v == 'start') {
|
||||
@if ($v == 'start') {
|
||||
justify-content: flex- + $v;
|
||||
}@else if($v == 'start') {
|
||||
} @else if($v == 'start') {
|
||||
justify-content: flex- + $v;
|
||||
}@else {
|
||||
} @else {
|
||||
justify-content: $v;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$align-items: start,end,center,baseline,stretch;
|
||||
$align-items: start, end, center, baseline, stretch;
|
||||
@each $v in $align-items {
|
||||
.items-#{$v} {
|
||||
@if($v == 'start') {
|
||||
@if ($v == 'start') {
|
||||
align-items: flex- + $v;
|
||||
}@else if($v == 'start') {
|
||||
} @else if($v == 'start') {
|
||||
align-items: flex- + $v;
|
||||
}@else {
|
||||
} @else {
|
||||
align-items: $v;
|
||||
}
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
@import "auxiliary";
|
||||
@import "mixin";
|
||||
@import "flex";
|
||||
@import 'auxiliary';
|
||||
@import 'mixin';
|
||||
@import 'flex';
|
||||
|
@ -1,8 +1,4 @@
|
||||
|
||||
@mixin flex($direction: row) {
|
||||
display: flex;
|
||||
flex-direction: $direction;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
<script lang="ts" setup></script>
|
||||
|
||||
<template>
|
||||
<view class="container"> 页面构建中... </view>
|
||||
<view class="container"> 页面构建中...54264536 </view>
|
||||
<view class="flex-row">
|
||||
<view>item1</view>
|
||||
<view>item2</view>
|
||||
|
@ -10,7 +10,7 @@
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true,
|
||||
"lib": ["esnext", "dom"],
|
||||
"types": ["@dcloudio/types"],
|
||||
"types": ["@dcloudio/types","src/tmui/interface.ts"],
|
||||
"paths": {
|
||||
"@/*":["./src/*"]
|
||||
}
|
||||
@ -20,6 +20,6 @@
|
||||
"src/**/*.d.ts",
|
||||
"src/**/*.tsx",
|
||||
"src/**/*.vue",
|
||||
"node_modules/@dcloudio/types/uni-app/uni.d.ts"
|
||||
"node_modules/@dcloudio/types/uni-app/uni.d.ts",
|
||||
]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user