1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-07 02:28:54 +08:00

fix styles

This commit is contained in:
lana-k
2025-03-25 21:19:22 +01:00
parent b3d81666be
commit 58cdab94c1
4 changed files with 7 additions and 4 deletions

View File

@@ -78,8 +78,7 @@ export default {
input,
label,
button,
.plotly_editor *,
.CodeMirror pre.CodeMirror-line {
.plotly_editor * {
font-family: 'Open Sans', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

View File

@@ -55,6 +55,10 @@ export default {
align-items: center;
line-height: 10px;
}
:deep(a) {
cursor: pointer;
}
:deep(.paginator-page-link) {
padding: 2px 3px;
margin: 0 5px;

View File

@@ -68,7 +68,7 @@
</template>
<script>
import Pager from './Pager'
import Pager from './Pager.vue'
export default {
name: 'SqlTable',

View File

@@ -136,7 +136,7 @@
<script>
import Logs from '@/components/Logs'
import SqlTable from '@/components/SqlTable'
import SqlTable from '@/components/SqlTable/index.vue'
import LoadingIndicator from '@/components/LoadingIndicator'
import SideToolBar from '../SideToolBar'
import Splitpanes from '@/components/Splitpanes'