Skip to content

Commit 6401368

Browse files
v3.0.0 - Redesign
1 parent 6cf0200 commit 6401368

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1761
-1352
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG.md
22

3+
## [3.0.0] - 2024-07-05
4+
5+
- Mosaic Redesign
6+
37
## [2.1.0] - 2023-12-08
48

59
Update to Vite 5

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Free Tailwind & Vue.js admin dashboard template
22

3-
![Mosaic TailwindCSS template preview](https://github.com/cruip/vuejs-admin-dashboard-template/assets/2683512/2fdc15d1-316b-4c51-b357-84b32e79de60)
3+
![Mosaic TailwindCSS template preview](https://github.com/cruip/vuejs-admin-dashboard-template/assets/2683512/3b9af06c-f3b2-45c5-8c60-052989cbebcb)
44

55
**Mosaic Lite Vue** is a responsive dashboard template built on top of TailwindCSS and fully coded in Vue.js. This template is a great starting point for anyone who wants to create a user interface for SaaS products, administrator dashboards, modern web apps, and more.
66
Use it for whatever you want, and be sure to reach us out on [Twitter](https://twitter.com/Cruip_com) if you build anything cool/useful with it.
@@ -13,7 +13,7 @@ Check the live demo here 👉️ [https://mosaic-vue.cruip.com/](https://mosaic-
1313

1414
## Mosaic Pro
1515

16-
[![Mosaic Pro](https://user-images.githubusercontent.com/2683512/151177961-2ff5b838-3745-48dc-80c8-80b043971483.png)](https://cruip.com/mosaic/)
16+
[![Mosaic Tailwind Admin Template](https://github.com/cruip/tailwind-dashboard-template/assets/2683512/2b4d0fae-bb07-4229-8a8a-48005f2f33cb)](https://cruip.com/mosaic/)
1717

1818
## Design files
1919

Diff for: index.html

+18-21
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,20 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
4-
<head>
5-
<meta charset="UTF-8" />
6-
<link rel="icon" href="/favicon.ico" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>Vite App</title>
9-
</head>
10-
11-
<body class="font-inter antialiased bg-slate-100 dark:bg-slate-900 text-slate-600 dark:text-slate-400">
12-
<script>
13-
if (localStorage.getItem('sidebar-expanded') == 'true') {
14-
document.querySelector('body').classList.add('sidebar-expanded');
15-
} else {
16-
document.querySelector('body').classList.remove('sidebar-expanded');
17-
}
18-
</script>
19-
<div id="app"></div>
20-
<script type="module" src="/src/main.js"></script>
21-
</body>
22-
23-
</html>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" href="/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Vite App</title>
8+
</head>
9+
<body class="font-inter antialiased bg-gray-100 dark:bg-gray-900 text-gray-600 dark:text-gray-400">
10+
<script>
11+
if (localStorage.getItem('sidebar-expanded') == 'true') {
12+
document.querySelector('body').classList.add('sidebar-expanded');
13+
} else {
14+
document.querySelector('body').classList.remove('sidebar-expanded');
15+
}
16+
</script>
17+
<div id="app"></div>
18+
<script type="module" src="/src/main.js"></script>
19+
</body>
20+
</html>

0 commit comments

Comments
 (0)