diff --git a/admin-fe/src/assets/app.less b/admin-fe/src/assets/app.less index 5932b9d..a6d3ce4 100644 --- a/admin-fe/src/assets/app.less +++ b/admin-fe/src/assets/app.less @@ -50,7 +50,8 @@ --border-radius-middle: calc(var(--border-radius) + 2px); --border-radius-large: calc(var(--border-radius) + 3px); - --header-height: 80px; + --header-bg: #001529; + --header-height: 50px; --left-menu-width: 200px; } @@ -130,29 +131,38 @@ body { } table { width: 100%; - border-left: solid 1px #eee; - border-top: solid 1px #eee; + border: solid 1px #eee; border-collapse: collapse; + font-size: 13px; + } + th{ + background-color: #f5f7fa; } - td, th { - border-right: solid 1px #eee; + text-align: left; border-bottom: solid 1px #eee; - padding: 6px; + padding: 6px 8px; + } + tr{ + &:hover{ + background-color: #f5f7fa; + } } } .page-wrapper { margin: 20px 0; + font-size: 12px; + text-align: right; .page-item { cursor: pointer; border: solid 1px var(--primary-2); border-radius: var(--border-radius-middle); display: inline-block; - padding: 4px 10px; + padding: 4px 6px; margin: 0 5px; - min-width: 40px; + min-width: 26px; text-align: center; &:hover, &.current-page { diff --git a/admin-fe/src/components/button/Index.vue b/admin-fe/src/components/button/Index.vue index 39802a8..ffc8996 100644 --- a/admin-fe/src/components/button/Index.vue +++ b/admin-fe/src/components/button/Index.vue @@ -73,8 +73,8 @@ const btnType = computed(() => props.type || 'primary') } &.btn-link { + padding:2px; background: none; - text-decoration: underline; color: var(--primary-color) } } diff --git a/admin-fe/src/components/pager/Pager.vue b/admin-fe/src/components/pager/Pager.vue index 0eef26b..df9f908 100644 --- a/admin-fe/src/components/pager/Pager.vue +++ b/admin-fe/src/components/pager/Pager.vue @@ -1,6 +1,6 @@