Skip to content

Commit

Permalink
chore: update logo and font
Browse files Browse the repository at this point in the history
  • Loading branch information
kdydesign committed Dec 12, 2023
1 parent aa42c7c commit 9577412
Show file tree
Hide file tree
Showing 33 changed files with 42 additions and 162 deletions.
1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NVM desk</title>
</head>
Expand Down
6 changes: 0 additions & 6 deletions public/tauri.svg

This file was deleted.

1 change: 0 additions & 1 deletion public/vite.svg

This file was deleted.

Binary file modified src-tauri/icons/128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/128x128@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src-tauri/icons/32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src-tauri/icons/Square107x107Logo.png
Binary file not shown.
Binary file removed src-tauri/icons/Square142x142Logo.png
Binary file not shown.
Binary file removed src-tauri/icons/Square150x150Logo.png
Binary file not shown.
Binary file removed src-tauri/icons/Square284x284Logo.png
Binary file not shown.
Binary file removed src-tauri/icons/Square30x30Logo.png
Binary file not shown.
Binary file removed src-tauri/icons/Square310x310Logo.png
Binary file not shown.
Binary file removed src-tauri/icons/Square44x44Logo.png
Binary file not shown.
Binary file removed src-tauri/icons/Square71x71Logo.png
Binary file not shown.
Binary file removed src-tauri/icons/Square89x89Logo.png
Binary file not shown.
Binary file removed src-tauri/icons/StoreLogo.png
Binary file not shown.
Binary file removed src-tauri/icons/icon.icns
Binary file not shown.
Binary file modified src-tauri/icons/icon.ico
Binary file not shown.
Binary file modified src-tauri/icons/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/fonts/HindSiliguri-Bold.ttf
Binary file not shown.
Binary file added src/assets/fonts/HindSiliguri-Light.ttf
Binary file not shown.
Binary file added src/assets/fonts/HindSiliguri-Medium.ttf
Binary file not shown.
Binary file added src/assets/fonts/HindSiliguri-Regular.ttf
Binary file not shown.
Binary file added src/assets/fonts/HindSiliguri-SemiBold.ttf
Binary file not shown.
Binary file added src/assets/fonts/Montserrat-Medium.ttf
Binary file not shown.
Binary file added src/assets/fonts/Montserrat-Regular.ttf
Binary file not shown.
Binary file modified src/assets/img/nvm-desk-logo-text.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions src/assets/style/color-variable.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
$app-base: #fe7f76
$dark-base: #1d1d1d
$close-btn-color: #ff6057
$minimize-btn-color: #febc2e
$copyright-color: #a2a2a2
$light-header: #e3e3e3
$dark-header: #0a0a0a

.text-brand
color: $app-base !important
.bg-brand
background-color: $app-base !important
55 changes: 28 additions & 27 deletions src/assets/style/style.sass
Original file line number Diff line number Diff line change
@@ -1,38 +1,16 @@
$app-base: #fe7f76
$dark-base: #1d1d1d
$close-btn-color: #ff6057
$minimize-btn-color: #febc2e
$copyright-color: #a2a2a2
$light-header: #e3e3e3
$dark-header: #0a0a0a
@font-face
font-family: 'Hind_Siliguri'
src: url('../fonts/Montserrat-Medium.ttf') format('truetype')

@import "./color-variable.sass"
@import "./custom-dark.sass"

.text-brand
color: $app-base !important
.bg-brand
background-color: $app-base !important

//:root
// font-family: Inter, Avenir, Helvetica, Arial, sans-serif
// font-size: 16px
// line-height: 24px
// font-weight: 400
//
// color: #0f0f0f
// background-color: #f6f6f6
//
// font-synthesis: none
// text-rendering: optimizeLegibility
// -webkit-font-smoothing: antialiased
// -moz-osx-font-smoothing: grayscale
// -webkit-text-size-adjust: 100%
*
box-sizing: border-box

body
overflow: hidden
font-family: 'Hind_Siliguri' !important

.sticky-table
height: 413px
Expand Down Expand Up @@ -131,3 +109,26 @@ footer
font-size: 12px
color: $copyright-color

::-webkit-scrollbar
height: 1px
width: 8px
background: transparent
z-index: 12
overflow: visible

::-webkit-scrollbar-thumb
width: 10px
background-color: $app-base
border-radius: 10px
z-index: 12
border: 2px solid rgba(0,0,0,0)
background-clip: padding-box
-webkit-transition: background-color .28s ease-in-out
transition: background-color .28s ease-in-out
margin: 2px
min-height: 32px
min-width: 32px

::-webkit-scrollbar-thumb:hover
background: $app-base

118 changes: 0 additions & 118 deletions src/assets/style/styles.css

This file was deleted.

6 changes: 0 additions & 6 deletions src/assets/vue.svg

This file was deleted.

4 changes: 2 additions & 2 deletions src/components/NodeList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,8 @@ async function onApply(col: string, row: any, idx: number) {
})
}
getInstalledData()
await getInstalledData()
onLoad()
})
}
Expand Down Expand Up @@ -358,7 +359,6 @@ function getFuncBtnStyle(col: string) {
row-key="ver"
:rows="filterData"
:columns="columns"
bordered
flat
:loading="isLoader"
class="sticky-table"
Expand Down
1 change: 0 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { createApp } from 'vue'
import { Quasar } from 'quasar'

import './assets/style/style.sass'
import './assets/style/styles.css'
import '@quasar/extras/material-icons/material-icons.css'
import '@quasar/extras/fontawesome-v6/fontawesome-v6.css'
import 'quasar/src/css/index.sass'
Expand Down

0 comments on commit 9577412

Please # to comment.