Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
sezisfurkan committed Jul 24, 2023
1 parent 4f74396 commit 41192f3
Show file tree
Hide file tree
Showing 127 changed files with 537 additions and 226,932 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
# dependencies
/node_modules
package-lock.json
yarn.lock

.DS_Store
dist
dist-ssr
Expand Down
2,339 changes: 363 additions & 1,976 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
},
"dependencies": {
"chart.js": "3.3.2",
"primeflex": "^3.2.1",
"primeflex": "^3.3.1",
"primeicons": "^6.0.1",
"primevue": "3.28.0",
"primevue": "3.30.2",
"vue": "^3.2.41",
"vue-router": "^4.1.5"
},
Expand All @@ -25,4 +25,4 @@
"sass": "^1.55.0",
"vite": "^4.2.1"
}
}
}
15 changes: 15 additions & 0 deletions src/assets/demo/code.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
pre.app-code {
background-color: var(--surface-ground);
margin: 0 0 1rem 0;
padding: 0;
border-radius: var(--border-radius);
overflow: auto;

code {
color: var(--surface-900);
padding: 1rem;
line-height: 1.5;
display: block;
font-family: monaco, Consolas, monospace;
}
}
2 changes: 2 additions & 0 deletions src/assets/demo/demo.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@import './flags/flags.css';
@import './code.scss';
File renamed without changes.
File renamed without changes
81 changes: 0 additions & 81 deletions src/assets/demo/styles/badges.scss

This file was deleted.

13 changes: 0 additions & 13 deletions src/assets/demo/styles/items.scss

This file was deleted.

44 changes: 44 additions & 0 deletions src/assets/layout/_config.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
.layout-wrapper {
.layout-config-button {
display: block;
position: fixed;
width: 3rem;
height: 3rem;
line-height: 3rem;
background: var(--primary-color);
color: var(--primary-color-text);
text-align: center;
top: 50%;
right: 0;
margin-top: -1.5rem;
border-top-left-radius: var(--border-radius);
border-bottom-left-radius: var(--border-radius);
border-top-right-radius: 0;
border-bottom-right-radius: 0;
transition: background-color var(--transition-duration);
overflow: hidden;
cursor: pointer;
z-index: 999;
box-shadow: -0.25rem 0 1rem rgba(0, 0, 0, 0.15);

i {
font-size: 2rem;
line-height: inherit;
transform: rotate(0deg);
transition: transform 1s;
}

&:hover {
background: var(--primary-400);
}
}

.layout-config-sidebar {
&.p-sidebar {
.p-sidebar-content {
padding-left: 2rem;
padding-right: 2rem;
}
}
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
42 changes: 0 additions & 42 deletions src/assets/layout/styles/layout/_config.scss

This file was deleted.

Loading

0 comments on commit 41192f3

Please sign in to comment.