Skip to content

Commit

Permalink
fix(style): eslint自动格式化
Browse files Browse the repository at this point in the history
  • Loading branch information
timi137137 committed Nov 15, 2023
1 parent fa66cb2 commit 688cc74
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/thumbnail/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const className = computed(() => {
});
</script>
<style lang="less" scoped>
@import url('@/style/index.less');
@import '@/style/index.less';
.thumbnail {
&-container {
Expand Down
2 changes: 1 addition & 1 deletion src/components/trend/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const iconCls = computed(() => ['trend-icon-container']);
}
&__reverse {
color: #ffffff;
color: #fff;
display: inline-flex;
align-items: center;
justify-content: center;
Expand Down
1 change: 1 addition & 0 deletions src/layouts/components/Content.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ const isRefreshing = computed(() => {
.fade-enter-active {
transition: opacity @anim-duration-slow @anim-time-fn-easing;
}
.fade-enter,
.fade-leave-to {
opacity: 0;
Expand Down
4 changes: 2 additions & 2 deletions src/pages/detail/advanced/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
padding: 0;
margin-bottom: var(--td-comp-margin-m);
}

:deep(.t-card__body) {
padding: 0;
}
Expand Down Expand Up @@ -50,8 +51,7 @@
width: 100%;
height: 240px;
display: flex;
align-items: center;
justify-items: center;
place-items: center center;
border: dashed 1px var(--td-component-border);
border-radius: var(--td-radius-medium);

Expand Down
1 change: 1 addition & 0 deletions src/pages/login/components/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ const navToHelper = () => {
.operations-container {
display: flex;
align-items: center;
.t-button {
margin-left: var(--td-comp-margin-l);
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/login/components/Register.vue
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,5 @@ const switchType = (val: string) => {
</script>

<style lang="less" scoped>
@import url('../index.less');
@import '../index.less';
</style>
2 changes: 1 addition & 1 deletion src/pages/login/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
color: var(--td-text-color-secondary);
}

@media screen and (max-height: 700px) {
@media screen and (height <= 700px) {
.copyright {
display: none;
}
Expand Down

0 comments on commit 688cc74

Please sign in to comment.