@apptegy/nuxt-navigation 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +84 -0
- package/dist/module.cjs +5 -0
- package/dist/module.d.mts +7 -0
- package/dist/module.d.ts +7 -0
- package/dist/module.json +9 -0
- package/dist/module.mjs +22 -0
- package/dist/runtime/assets/edurooms-logo-white.svg +1 -0
- package/dist/runtime/assets/edurooms-logo.svg +1 -0
- package/dist/runtime/assets/icons/24/Minus.svg +5 -0
- package/dist/runtime/assets/icons/24/Plus.svg +5 -0
- package/dist/runtime/assets/icons/32/logout.svg +4 -0
- package/dist/runtime/assets/img/help-toggle.svg +13 -0
- package/dist/runtime/assets/img/help.svg +5 -0
- package/dist/runtime/assets/img/impersonate-user.svg +3 -0
- package/dist/runtime/assets/img/navbar-minus.svg +3 -0
- package/dist/runtime/assets/img/navbar-plus.svg +3 -0
- package/dist/runtime/assets/img/navbar-up.svg +3 -0
- package/dist/runtime/assets/img/user.svg +8 -0
- package/dist/runtime/assets/logo.svg +56 -0
- package/dist/runtime/assets/thrillshare-icon-white.svg +1 -0
- package/dist/runtime/assets/thrillshare-logo-white.svg +1 -0
- package/dist/runtime/components/Nav/Avatar.vue +61 -0
- package/dist/runtime/components/Nav/Breadcrumb.vue +23 -0
- package/dist/runtime/components/Nav/Header.vue +200 -0
- package/dist/runtime/components/Nav/HelpArticles.vue +154 -0
- package/dist/runtime/components/Nav/ImpersonateInfoPanel.vue +135 -0
- package/dist/runtime/components/Nav/OrgSelect.vue +198 -0
- package/dist/runtime/components/Nav/Sidebar.vue +187 -0
- package/dist/runtime/components/Nav/SidebarItem.vue +40 -0
- package/dist/runtime/components/Nav/SidebarSection.vue +73 -0
- package/dist/runtime/components/Nav/SubMenu.vue +37 -0
- package/dist/runtime/components/Nav/SubMenuItem.vue +66 -0
- package/dist/runtime/composables/accessibleActions.d.ts +33 -0
- package/dist/runtime/composables/accessibleActions.js +195 -0
- package/dist/types.d.mts +1 -0
- package/dist/types.d.ts +1 -0
- package/package.json +49 -0
package/README.md
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
Get your module up and running quickly.
|
|
3
|
+
|
|
4
|
+
Find and replace all on all files (CMD+SHIFT+F):
|
|
5
|
+
- Name: My Module
|
|
6
|
+
- Package name: my-module
|
|
7
|
+
- Description: My new Nuxt module
|
|
8
|
+
-->
|
|
9
|
+
|
|
10
|
+
# My Module
|
|
11
|
+
|
|
12
|
+
[![npm version][npm-version-src]][npm-version-href]
|
|
13
|
+
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
14
|
+
[![License][license-src]][license-href]
|
|
15
|
+
[![Nuxt][nuxt-src]][nuxt-href]
|
|
16
|
+
|
|
17
|
+
My new Nuxt module for doing amazing things.
|
|
18
|
+
|
|
19
|
+
- [✨ Release Notes](/CHANGELOG.md)
|
|
20
|
+
<!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/my-module?file=playground%2Fapp.vue) -->
|
|
21
|
+
<!-- - [📖 Documentation](https://example.com) -->
|
|
22
|
+
|
|
23
|
+
## Features
|
|
24
|
+
|
|
25
|
+
<!-- Highlight some of the features your module provide here -->
|
|
26
|
+
- ⛰ Foo
|
|
27
|
+
- 🚠 Bar
|
|
28
|
+
- 🌲 Baz
|
|
29
|
+
|
|
30
|
+
## Quick Setup
|
|
31
|
+
|
|
32
|
+
Install the module to your Nuxt application with one command:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
npx nuxi module add my-module
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
That's it! You can now use My Module in your Nuxt app ✨
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
## Contribution
|
|
42
|
+
|
|
43
|
+
<details>
|
|
44
|
+
<summary>Local development</summary>
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
# Install dependencies
|
|
48
|
+
npm install
|
|
49
|
+
|
|
50
|
+
# Generate type stubs
|
|
51
|
+
npm run dev:prepare
|
|
52
|
+
|
|
53
|
+
# Develop with the playground
|
|
54
|
+
npm run dev
|
|
55
|
+
|
|
56
|
+
# Build the playground
|
|
57
|
+
npm run dev:build
|
|
58
|
+
|
|
59
|
+
# Run ESLint
|
|
60
|
+
npm run lint
|
|
61
|
+
|
|
62
|
+
# Run Vitest
|
|
63
|
+
npm run test
|
|
64
|
+
npm run test:watch
|
|
65
|
+
|
|
66
|
+
# Release new version
|
|
67
|
+
npm run release
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
</details>
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
<!-- Badges -->
|
|
74
|
+
[npm-version-src]: https://img.shields.io/npm/v/my-module/latest.svg?style=flat&colorA=020420&colorB=00DC82
|
|
75
|
+
[npm-version-href]: https://npmjs.com/package/my-module
|
|
76
|
+
|
|
77
|
+
[npm-downloads-src]: https://img.shields.io/npm/dm/my-module.svg?style=flat&colorA=020420&colorB=00DC82
|
|
78
|
+
[npm-downloads-href]: https://npmjs.com/package/my-module
|
|
79
|
+
|
|
80
|
+
[license-src]: https://img.shields.io/npm/l/my-module.svg?style=flat&colorA=020420&colorB=00DC82
|
|
81
|
+
[license-href]: https://npmjs.com/package/my-module
|
|
82
|
+
|
|
83
|
+
[nuxt-src]: https://img.shields.io/badge/Nuxt-020420?logo=nuxt.js
|
|
84
|
+
[nuxt-href]: https://nuxt.com
|
package/dist/module.cjs
ADDED
package/dist/module.d.ts
ADDED
package/dist/module.json
ADDED
package/dist/module.mjs
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { defineNuxtModule, createResolver, addComponentsDir, addImportsDir } from '@nuxt/kit';
|
|
2
|
+
|
|
3
|
+
const module = defineNuxtModule({
|
|
4
|
+
meta: {
|
|
5
|
+
name: "@apptegy/nuxt-navigation"
|
|
6
|
+
},
|
|
7
|
+
setup(_options, nuxt) {
|
|
8
|
+
const resolver = createResolver(import.meta.url);
|
|
9
|
+
addComponentsDir({ path: resolver.resolve("runtime/components") });
|
|
10
|
+
addImportsDir(resolver.resolve("runtime/composables"));
|
|
11
|
+
nuxt.hook("nitro:config", async (nitroConfig) => {
|
|
12
|
+
nitroConfig.publicAssets ||= [];
|
|
13
|
+
nitroConfig.publicAssets.push({
|
|
14
|
+
dir: resolver.resolve("runtime/assets"),
|
|
15
|
+
maxAge: 60 * 60 * 24 * 365
|
|
16
|
+
// 1 year
|
|
17
|
+
});
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
export { module as default };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="119" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0)"><path d="M7.107 19.211c-1.037 0-1.969-.18-2.795-.538a6.23 6.23 0 01-2.056-1.51A6.624 6.624 0 01.964 14.96a8.155 8.155 0 01-.448-2.714c0-.956.149-1.852.448-2.688A6.935 6.935 0 012.282 7.33 6.283 6.283 0 014.34 5.845c.79-.376 1.67-.564 2.636-.564 1.02 0 1.916.188 2.69.564.79.358 1.45.87 1.977 1.536.527.649.922 1.434 1.186 2.356.281.905.422 1.903.422 2.996H2.704c.035.665.158 1.288.369 1.869.21.58.501 1.084.87 1.51.37.427.817.76 1.345 1 .527.238 1.133.358 1.819.358 1.002 0 1.819-.222 2.452-.666.633-.46 1.072-1.144 1.318-2.048h2.083c-.317 1.433-.984 2.535-2.004 3.303-1.02.768-2.302 1.152-3.85 1.152zm-.132-12.29c-.633 0-1.195.11-1.687.332a3.462 3.462 0 00-1.266.896 5.013 5.013 0 00-.844 1.357 6.275 6.275 0 00-.421 1.665h8.2c-.071-1.332-.45-2.373-1.135-3.124-.667-.751-1.617-1.127-2.847-1.127zM20.347 19.237c-.931 0-1.775-.163-2.53-.487a5.395 5.395 0 01-1.899-1.383c-.51-.614-.905-1.348-1.186-2.202-.282-.87-.422-1.835-.422-2.893 0-1.093.15-2.074.448-2.945.316-.87.738-1.596 1.265-2.176a5.43 5.43 0 011.899-1.357 5.833 5.833 0 012.373-.487c.966 0 1.81.205 2.53.615.721.41 1.301.93 1.74 1.562h.053V.544h2.136v18.308h-2.136V17.24h-.052c-.51.649-1.099 1.144-1.767 1.485-.668.342-1.485.513-2.452.513zm.08-1.742c.755 0 1.406-.128 1.95-.384.545-.273.994-.64 1.345-1.1a4.45 4.45 0 00.765-1.64 7.721 7.721 0 00.263-2.074c0-.768-.096-1.468-.29-2.1-.175-.648-.448-1.203-.817-1.664-.37-.46-.826-.819-1.371-1.075s-1.169-.384-1.872-.384c-.65 0-1.221.136-1.714.41a3.503 3.503 0 00-1.212 1.1c-.317.462-.563 1.016-.739 1.665a8.414 8.414 0 00-.237 2.048c0 .752.08 1.443.237 2.074.176.632.422 1.178.739 1.64.334.46.747.827 1.239 1.1.492.256 1.063.384 1.713.384zM38.058 18.852v-1.817h-.053a6.265 6.265 0 01-1.688 1.561c-.615.376-1.423.564-2.425.564-1.406 0-2.522-.384-3.348-1.152-.826-.769-1.24-1.844-1.24-3.227V5.614h2.136v9.116c0 .87.264 1.545.79 2.023.546.46 1.302.691 2.268.691.545 0 1.037-.094 1.477-.281.44-.188.808-.444 1.107-.769.316-.341.554-.734.712-1.177a3.93 3.93 0 00.264-1.46V5.614h2.135v13.238h-2.135z" fill="#F4E3CE"/><path d="M43.824 5.742h4.112v2.049h.08c.474-.785 1.001-1.357 1.581-1.716.58-.358 1.283-.537 2.11-.537.404 0 .685.034.843.102v3.585h-.105c-1.318-.188-2.373.034-3.164.666-.773.614-1.16 1.638-1.16 3.072v5.89h-4.297V5.743zM60.25 16.292c.95 0 1.661-.359 2.136-1.075.492-.734.738-1.699.738-2.894s-.246-2.16-.738-2.893c-.475-.734-1.187-1.101-2.136-1.101-.95 0-1.66.367-2.136 1.1-.474.735-.711 1.7-.711 2.894 0 1.195.237 2.16.712 2.894.474.716 1.186 1.075 2.135 1.075zm.026 2.97c-1.09 0-2.082-.17-2.979-.512a7.018 7.018 0 01-2.267-1.46 6.803 6.803 0 01-1.477-2.201 7.523 7.523 0 01-.5-2.766c0-.99.166-1.903.5-2.74a6.457 6.457 0 011.477-2.202 6.496 6.496 0 012.267-1.46c.897-.358 1.89-.537 2.98-.537s2.073.18 2.952.538c.897.341 1.653.828 2.268 1.46a6.153 6.153 0 011.45 2.201c.351.837.527 1.75.527 2.74a7.19 7.19 0 01-.527 2.766 6.465 6.465 0 01-1.45 2.202c-.615.614-1.371 1.1-2.268 1.46-.879.34-1.863.511-2.953.511zM75.518 16.292c.95 0 1.661-.359 2.136-1.075.492-.734.738-1.699.738-2.894s-.246-2.16-.738-2.893c-.475-.734-1.187-1.101-2.136-1.101-.95 0-1.661.367-2.136 1.1-.474.735-.711 1.7-.711 2.894 0 1.195.237 2.16.711 2.894.475.716 1.187 1.075 2.136 1.075zm.026 2.97c-1.09 0-2.082-.17-2.979-.512a7.017 7.017 0 01-2.267-1.46 6.805 6.805 0 01-1.477-2.201 7.525 7.525 0 01-.5-2.766c0-.99.166-1.903.5-2.74a6.458 6.458 0 011.477-2.202 6.494 6.494 0 012.267-1.46c.897-.358 1.89-.537 2.98-.537s2.073.18 2.952.538c.897.341 1.652.828 2.268 1.46a6.153 6.153 0 011.45 2.201c.351.837.527 1.75.527 2.74 0 .99-.176 1.912-.527 2.766a6.466 6.466 0 01-1.45 2.202c-.616.614-1.371 1.1-2.268 1.46-.879.34-1.863.511-2.953.511zM84.195 5.742h4.113v1.87h.079a5.026 5.026 0 011.608-1.64c.668-.409 1.494-.614 2.478-.614.897 0 1.661.205 2.294.615.65.41 1.151.973 1.503 1.69h.053c.527-.802 1.142-1.383 1.845-1.741.72-.376 1.52-.564 2.399-.564.756 0 1.424.12 2.004.359.58.239 1.055.58 1.424 1.024.386.427.676.948.87 1.562.193.615.29 1.289.29 2.023v8.527h-4.298v-7.785c0-.716-.158-1.263-.474-1.638-.299-.393-.774-.59-1.424-.59-.685 0-1.213.248-1.582.743s-.553 1.136-.553 1.92v7.35h-4.298v-7.785c0-.716-.158-1.263-.474-1.638-.3-.393-.774-.59-1.424-.59-.668 0-1.195.248-1.582.743-.37.495-.554 1.136-.554 1.92v7.35h-4.297V5.743zM112.857 19.262c-1.986 0-3.559-.41-4.719-1.229-1.16-.836-1.775-1.98-1.846-3.431h4.06c.088.649.343 1.135.765 1.46.422.324.993.486 1.714.486.65 0 1.16-.11 1.529-.333.387-.222.58-.546.58-.973 0-.29-.097-.52-.29-.691a1.927 1.927 0 00-.765-.435 4.76 4.76 0 00-1.107-.256 53.177 53.177 0 01-1.266-.231c-.58-.102-1.16-.222-1.74-.358a5.922 5.922 0 01-1.582-.666 3.368 3.368 0 01-1.107-1.152c-.281-.495-.422-1.127-.422-1.895 0-.683.15-1.29.449-1.818.316-.53.738-.965 1.265-1.306a5.6 5.6 0 011.846-.794 8.951 8.951 0 012.267-.282c1.916 0 3.383.376 4.403 1.127 1.019.751 1.582 1.775 1.687 3.073h-3.954c-.088-.598-.326-.999-.712-1.204-.369-.222-.853-.333-1.45-.333-.528 0-.976.103-1.345.308-.352.187-.527.486-.527.896 0 .239.088.427.263.563.176.137.413.256.712.359.299.085.642.162 1.028.23.405.068.818.137 1.24.205.597.102 1.195.23 1.792.384a5.253 5.253 0 011.661.666c.51.307.923.725 1.24 1.255.316.512.474 1.186.474 2.022 0 .717-.158 1.349-.474 1.895a3.784 3.784 0 01-1.266 1.357c-.545.359-1.195.632-1.951.82a10.15 10.15 0 01-2.452.281z" fill="#fff"/></g><defs><clipPath id="clip0"><path fill="#fff" d="M0 0h119v24H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="119" height="24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0)"><path d="M7.107 19.211c-1.037 0-1.969-.18-2.795-.538a6.23 6.23 0 01-2.056-1.51A6.624 6.624 0 01.964 14.96a8.155 8.155 0 01-.448-2.714c0-.956.149-1.852.448-2.688A6.935 6.935 0 012.282 7.33 6.283 6.283 0 014.34 5.845c.79-.376 1.67-.564 2.636-.564 1.02 0 1.916.188 2.69.564.79.358 1.45.87 1.977 1.536.527.649.922 1.434 1.186 2.356.281.905.422 1.903.422 2.996H2.704c.035.665.158 1.288.369 1.869.21.58.501 1.084.87 1.51.37.427.817.76 1.345 1 .527.238 1.133.358 1.819.358 1.002 0 1.819-.222 2.452-.666.633-.46 1.072-1.144 1.318-2.048h2.083c-.317 1.433-.984 2.535-2.004 3.303-1.02.768-2.302 1.152-3.85 1.152zm-.132-12.29c-.633 0-1.195.11-1.687.332a3.462 3.462 0 00-1.266.896 5.013 5.013 0 00-.844 1.357 6.275 6.275 0 00-.421 1.665h8.2c-.071-1.332-.45-2.373-1.135-3.124-.667-.751-1.617-1.127-2.847-1.127zM20.347 19.237c-.931 0-1.775-.163-2.53-.487a5.395 5.395 0 01-1.899-1.383c-.51-.614-.905-1.348-1.186-2.202-.282-.87-.422-1.835-.422-2.893 0-1.093.15-2.074.448-2.945.316-.87.738-1.596 1.265-2.176a5.43 5.43 0 011.899-1.357 5.833 5.833 0 012.373-.487c.966 0 1.81.205 2.53.615.721.41 1.301.93 1.74 1.562h.053V.544h2.136v18.308h-2.136V17.24h-.052c-.51.649-1.099 1.144-1.767 1.485-.668.342-1.485.513-2.452.513zm.08-1.742c.755 0 1.406-.128 1.95-.384.545-.273.994-.64 1.345-1.1a4.45 4.45 0 00.765-1.64 7.721 7.721 0 00.263-2.074c0-.768-.096-1.468-.29-2.1-.175-.648-.448-1.203-.817-1.664-.37-.46-.826-.819-1.371-1.075s-1.169-.384-1.872-.384c-.65 0-1.221.136-1.714.41a3.503 3.503 0 00-1.212 1.1c-.317.462-.563 1.016-.739 1.665a8.414 8.414 0 00-.237 2.048c0 .752.08 1.443.237 2.074.176.632.422 1.178.739 1.64.334.46.747.827 1.239 1.1.492.256 1.063.384 1.713.384zM38.058 18.852v-1.817h-.053a6.265 6.265 0 01-1.688 1.561c-.615.376-1.423.564-2.425.564-1.406 0-2.522-.384-3.348-1.152-.826-.769-1.24-1.844-1.24-3.227V5.614h2.136v9.116c0 .87.264 1.545.79 2.023.546.46 1.302.691 2.268.691.545 0 1.037-.094 1.477-.281.44-.188.808-.444 1.107-.769.316-.341.554-.734.712-1.177a3.93 3.93 0 00.264-1.46V5.614h2.135v13.238h-2.135z" fill="#503462"/><path d="M43.824 5.742h4.112v2.049h.08c.474-.785 1.001-1.357 1.581-1.716.58-.358 1.283-.537 2.11-.537.404 0 .685.034.843.102v3.585h-.105c-1.318-.188-2.373.034-3.164.666-.773.614-1.16 1.638-1.16 3.072v5.89h-4.297V5.743zM60.25 16.292c.95 0 1.661-.359 2.136-1.075.492-.734.738-1.699.738-2.894s-.246-2.16-.738-2.893c-.475-.734-1.187-1.101-2.136-1.101-.95 0-1.66.367-2.136 1.1-.474.735-.711 1.7-.711 2.894 0 1.195.237 2.16.712 2.894.474.716 1.186 1.075 2.135 1.075zm.026 2.97c-1.09 0-2.082-.17-2.979-.512a7.018 7.018 0 01-2.267-1.46 6.803 6.803 0 01-1.477-2.201 7.523 7.523 0 01-.5-2.766c0-.99.166-1.903.5-2.74a6.457 6.457 0 011.477-2.202 6.496 6.496 0 012.267-1.46c.897-.358 1.89-.537 2.98-.537s2.073.18 2.952.538c.897.341 1.653.828 2.268 1.46a6.153 6.153 0 011.45 2.201c.351.837.527 1.75.527 2.74a7.19 7.19 0 01-.527 2.766 6.465 6.465 0 01-1.45 2.202c-.615.614-1.371 1.1-2.268 1.46-.879.34-1.863.511-2.953.511zM75.518 16.292c.95 0 1.661-.359 2.136-1.075.492-.734.738-1.699.738-2.894s-.246-2.16-.738-2.893c-.475-.734-1.187-1.101-2.136-1.101-.95 0-1.661.367-2.136 1.1-.474.735-.711 1.7-.711 2.894 0 1.195.237 2.16.711 2.894.475.716 1.187 1.075 2.136 1.075zm.026 2.97c-1.09 0-2.082-.17-2.979-.512a7.017 7.017 0 01-2.267-1.46 6.805 6.805 0 01-1.477-2.201 7.525 7.525 0 01-.5-2.766c0-.99.166-1.903.5-2.74a6.458 6.458 0 011.477-2.202 6.494 6.494 0 012.267-1.46c.897-.358 1.89-.537 2.98-.537s2.073.18 2.952.538c.897.341 1.652.828 2.268 1.46a6.153 6.153 0 011.45 2.201c.351.837.527 1.75.527 2.74 0 .99-.176 1.912-.527 2.766a6.466 6.466 0 01-1.45 2.202c-.616.614-1.371 1.1-2.268 1.46-.879.34-1.863.511-2.953.511zM84.195 5.742h4.113v1.87h.079a5.026 5.026 0 011.608-1.64c.668-.409 1.494-.614 2.478-.614.897 0 1.661.205 2.294.615.65.41 1.151.973 1.503 1.69h.053c.527-.802 1.142-1.383 1.845-1.741.72-.376 1.52-.564 2.399-.564.756 0 1.424.12 2.004.359.58.239 1.055.58 1.424 1.024.386.427.676.948.87 1.562.193.615.29 1.289.29 2.023v8.527h-4.298v-7.785c0-.716-.158-1.263-.474-1.638-.299-.393-.774-.59-1.424-.59-.685 0-1.213.248-1.582.743s-.553 1.136-.553 1.92v7.35h-4.298v-7.785c0-.716-.158-1.263-.474-1.638-.3-.393-.774-.59-1.424-.59-.668 0-1.195.248-1.582.743-.37.495-.554 1.136-.554 1.92v7.35h-4.297V5.743zM112.857 19.262c-1.986 0-3.559-.41-4.719-1.229-1.16-.836-1.775-1.98-1.846-3.431h4.06c.088.649.343 1.135.765 1.46.422.324.993.486 1.714.486.65 0 1.16-.11 1.529-.333.387-.222.58-.546.58-.973 0-.29-.097-.52-.29-.691a1.927 1.927 0 00-.765-.435 4.76 4.76 0 00-1.107-.256 53.177 53.177 0 01-1.266-.231c-.58-.102-1.16-.222-1.74-.358a5.922 5.922 0 01-1.582-.666 3.368 3.368 0 01-1.107-1.152c-.281-.495-.422-1.127-.422-1.895 0-.683.15-1.29.449-1.818.316-.53.738-.965 1.265-1.306a5.6 5.6 0 011.846-.794 8.951 8.951 0 012.267-.282c1.916 0 3.383.376 4.403 1.127 1.019.751 1.582 1.775 1.687 3.073h-3.954c-.088-.598-.326-.999-.712-1.204-.369-.222-.853-.333-1.45-.333-.528 0-.976.103-1.345.308-.352.187-.527.486-.527.896 0 .239.088.427.263.563.176.137.413.256.712.359.299.085.642.162 1.028.23.405.068.818.137 1.24.205.597.102 1.195.23 1.792.384a5.253 5.253 0 011.661.666c.51.307.923.725 1.24 1.255.316.512.474 1.186.474 2.022 0 .717-.158 1.349-.474 1.895a3.784 3.784 0 01-1.266 1.357c-.545.359-1.195.632-1.951.82a10.15 10.15 0 01-2.452.281z" fill="#503462"/></g><defs><clipPath id="clip0"><path fill="#503462" d="M0 0h119v24H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="Icons / 24 / Plus">
|
|
3
|
+
<path id="Vector 154" d="M12 5V12M12 12L12 19M12 12L19 12M12 12H5" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</g>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M4.5 2C3.11929 2 2 3.11929 2 4.5V19.5C2 20.8807 3.11929 22 4.5 22H14.5C14.7761 22 15 21.7761 15 21.5C15 21.2239 14.7761 21 14.5 21H4.5C3.67157 21 3 20.3284 3 19.5V4.5C3 3.67157 3.67157 3 4.5 3H14.5C14.7761 3 15 2.77614 15 2.5C15 2.22386 14.7761 2 14.5 2H4.5Z" fill="#662e80"/>
|
|
3
|
+
<path d="M18.8536 8.14645C18.6583 7.95118 18.3417 7.95118 18.1464 8.14645C17.9512 8.34171 17.9512 8.65829 18.1464 8.85355L20.2929 11H7.5C7.22386 11 7 11.2239 7 11.5C7 11.7761 7.22386 12 7.5 12H20.2929L18.1464 14.1464C17.9512 14.3417 17.9512 14.6583 18.1464 14.8536C18.3417 15.0488 18.6583 15.0488 18.8536 14.8536L21.8536 11.8536C22.0488 11.6583 22.0488 11.3417 21.8536 11.1464L18.8536 8.14645Z" fill="#662e80"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_107_12245)">
|
|
3
|
+
<path d="M7.33325 6.33333V3.83333C7.33325 3.3731 7.70635 3 8.16659 3H16.4999C16.9602 3 17.3333 3.3731 17.3333 3.83333V6.33333L20.6666 3.83333V12.1667L17.3333 9.66667V12.1667C17.3333 12.6269 16.9602 13 16.4999 13H15.6666" stroke="#CAC2D0" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 20.2222V9.11111C4 8.49746 4.49746 8 5.11111 8H12.8889C13.5025 8 14 8.49746 14 9.11111V20.2222C14 20.8359 13.5025 21.3333 12.8889 21.3333H5.11111C4.49746 21.3333 4 20.8359 4 20.2222ZM6.08333 11.3333C6.08333 11.1032 6.26988 10.9167 6.5 10.9167H11.5C11.7301 10.9167 11.9167 11.1032 11.9167 11.3333C11.9167 11.5635 11.7301 11.75 11.5 11.75H6.5C6.26988 11.75 6.08333 11.5635 6.08333 11.3333ZM6.5 13.4167C6.26988 13.4167 6.08333 13.6032 6.08333 13.8333C6.08333 14.0635 6.26988 14.25 6.5 14.25H11.5C11.7301 14.25 11.9167 14.0635 11.9167 13.8333C11.9167 13.6032 11.7301 13.4167 11.5 13.4167H6.5ZM6.08333 16.3333C6.08333 16.1032 6.26988 15.9167 6.5 15.9167H11.5C11.7301 15.9167 11.9167 16.1032 11.9167 16.3333C11.9167 16.5635 11.7301 16.75 11.5 16.75H6.5C6.26988 16.75 6.08333 16.5635 6.08333 16.3333ZM6.5 18.4167C6.26988 18.4167 6.08333 18.6032 6.08333 18.8333C6.08333 19.0635 6.26988 19.25 6.5 19.25H11.5C11.7301 19.25 11.9167 19.0635 11.9167 18.8333C11.9167 18.6032 11.7301 18.4167 11.5 18.4167H6.5Z" fill="#CAC2D0"/>
|
|
5
|
+
<path d="M7.33325 6.33333V3.83333C7.33325 3.3731 7.70635 3 8.16659 3H16.4999C16.9602 3 17.3333 3.3731 17.3333 3.83333V6.33333L20.6666 3.83333V12.1667L17.3333 9.66667V12.1667C17.3333 12.6269 16.9602 13 16.4999 13H15.6666" stroke="#CAC2D0" stroke-width="0.833333" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 20.2222V9.11111C4 8.49746 4.49746 8 5.11111 8H12.8889C13.5025 8 14 8.49746 14 9.11111V20.2222C14 20.8359 13.5025 21.3333 12.8889 21.3333H5.11111C4.49746 21.3333 4 20.8359 4 20.2222ZM6.08333 11.3333C6.08333 11.1032 6.26988 10.9167 6.5 10.9167H11.5C11.7301 10.9167 11.9167 11.1032 11.9167 11.3333C11.9167 11.5635 11.7301 11.75 11.5 11.75H6.5C6.26988 11.75 6.08333 11.5635 6.08333 11.3333ZM6.5 13.4167C6.26988 13.4167 6.08333 13.6032 6.08333 13.8333C6.08333 14.0635 6.26988 14.25 6.5 14.25H11.5C11.7301 14.25 11.9167 14.0635 11.9167 13.8333C11.9167 13.6032 11.7301 13.4167 11.5 13.4167H6.5ZM6.08333 16.3333C6.08333 16.1032 6.26988 15.9167 6.5 15.9167H11.5C11.7301 15.9167 11.9167 16.1032 11.9167 16.3333C11.9167 16.5635 11.7301 16.75 11.5 16.75H6.5C6.26988 16.75 6.08333 16.5635 6.08333 16.3333ZM6.5 18.4167C6.26988 18.4167 6.08333 18.6032 6.08333 18.8333C6.08333 19.0635 6.26988 19.25 6.5 19.25H11.5C11.7301 19.25 11.9167 19.0635 11.9167 18.8333C11.9167 18.6032 11.7301 18.4167 11.5 18.4167H6.5Z" fill="#CAC2D0"/>
|
|
7
|
+
</g>
|
|
8
|
+
<defs>
|
|
9
|
+
<clipPath id="clip0_107_12245">
|
|
10
|
+
<rect width="24" height="24" fill="white"/>
|
|
11
|
+
</clipPath>
|
|
12
|
+
</defs>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15.0625 17.2451C14.9404 17.582 14.8745 18.041 14.8647 18.6221H16.2197C16.2197 17.8799 16.3979 17.311 16.7544 16.9155L17.5527 16.1245C18.3438 15.2944 18.7393 14.4521 18.7393 13.5977C18.7393 12.7334 18.4805 12.0547 17.9629 11.5615C17.4502 11.0635 16.7324 10.8145 15.8096 10.8145C14.9209 10.8145 14.1982 11.0586 13.6416 11.5469C13.0898 12.0303 12.8091 12.6675 12.7993 13.4585H14.1543C14.1543 13.0142 14.3057 12.6602 14.6084 12.3965C14.9111 12.1328 15.3115 12.001 15.8096 12.001C16.3223 12.001 16.7129 12.1475 16.9814 12.4404C17.25 12.7285 17.3843 13.1289 17.3843 13.6416C17.3843 14.1738 17.1792 14.6719 16.769 15.1357L15.8096 16.1245C15.4336 16.5347 15.1846 16.9082 15.0625 17.2451Z" fill="#CAC2D0"/>
|
|
3
|
+
<path d="M15.0039 20.3945C14.8721 20.541 14.8062 20.7241 14.8062 20.9438C14.8062 21.1636 14.8721 21.3467 15.0039 21.4932C15.1406 21.6348 15.3408 21.7056 15.6045 21.7056C15.8682 21.7056 16.0684 21.6348 16.2051 21.4932C16.3418 21.3467 16.4102 21.1636 16.4102 20.9438C16.4102 20.7241 16.3418 20.541 16.2051 20.3945C16.0684 20.2432 15.8682 20.1675 15.6045 20.1675C15.3408 20.1675 15.1406 20.2432 15.0039 20.3945Z" fill="#CAC2D0"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M26 16C26 21.5228 21.5228 26 16 26C10.4772 26 6 21.5228 6 16C6 10.4772 10.4772 6 16 6C21.5228 6 26 10.4772 26 16ZM24.75 16C24.75 20.8325 20.8325 24.75 16 24.75C11.1675 24.75 7.25 20.8325 7.25 16C7.25 11.1675 11.1675 7.25 16 7.25C20.8325 7.25 24.75 11.1675 24.75 16Z" fill="#CAC2D0"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.51621 5.46934C10.1369 4.84868 10.9787 4.5 11.8564 4.5C12.291 4.5 12.7214 4.5856 13.1229 4.75192C13.5244 4.91824 13.8893 5.16202 14.1966 5.46934C14.5039 5.77665 14.7477 6.14149 14.914 6.54302C15.0803 6.94455 15.1659 7.37491 15.1659 7.80952V8.57143C15.1659 9.49888 14.7851 10.5353 14.1564 11.3376C13.5263 12.1419 12.7049 12.6429 11.8564 12.6429C11.0079 12.6429 10.1865 12.1419 9.55636 11.3376C8.92771 10.5353 8.54688 9.49888 8.54688 8.57143V7.80952C8.54688 6.93178 8.89556 6.08999 9.51621 5.46934ZM11.8564 3.5C10.7134 3.5 9.6173 3.95404 8.80911 4.76223C8.00091 5.57042 7.54688 6.66657 7.54688 7.80952V8.57143C7.54688 9.7476 8.01899 10.9969 8.7692 11.9544C9.01711 12.2708 9.3017 12.5628 9.61708 12.8118C8.52026 12.9611 7.43611 13.2184 6.38137 13.5787L6.38124 13.5787C6.3509 13.5891 6.31976 13.5995 6.28797 13.6102C5.881 13.7463 5.36524 13.9189 5.0108 14.4575C4.65147 15.0035 4.5 15.85 4.5 17.2149V18.2382C4.5 19.0666 5.17157 19.7382 6 19.7382H13.381C13.6571 19.7382 13.881 19.5143 13.881 19.2382C13.881 18.962 13.6571 18.7382 13.381 18.7382H6C5.72386 18.7382 5.5 18.5143 5.5 18.2382V17.2149C5.5 15.8649 5.66268 15.286 5.84614 15.0072C6.00676 14.7632 6.20845 14.6943 6.70434 14.5251L6.70448 14.5251C9.55741 13.5506 12.6282 13.3783 15.5451 14.1095C15.8129 14.1766 16.0845 14.0139 16.1517 13.746C16.2188 13.4782 16.0561 13.2066 15.7882 13.1395C15.2284 12.9991 14.6636 12.8901 14.0961 12.8115C14.4113 12.5625 14.6958 12.2707 14.9436 11.9544C15.6938 10.9969 16.1659 9.7476 16.1659 8.57143V7.80952C16.1659 7.24359 16.0545 6.6832 15.8379 6.16034C15.6213 5.63748 15.3039 5.16241 14.9037 4.76223C14.5035 4.36205 14.0284 4.04462 13.5056 3.82804C12.9827 3.61147 12.4223 3.5 11.8564 3.5ZM19.0684 15.0752C18.8731 14.8799 18.5566 14.8799 18.3613 15.0752C18.166 15.2704 18.166 15.587 18.3613 15.7823L19.7929 17.2139H14.8018C14.5256 17.2139 14.3018 17.4377 14.3018 17.7139C14.3018 17.99 14.5256 18.2139 14.8018 18.2139H19.794L18.3613 19.6466C18.166 19.8418 18.166 20.1584 18.3613 20.3537C18.5566 20.549 18.8731 20.549 19.0684 20.3537L20.647 18.7751C21.2328 18.1893 21.2328 17.2396 20.647 16.6538L19.0684 15.0752Z" fill="#CAC2D0"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.6464 6.35355C10.8417 6.54882 11.1583 6.54882 11.3536 6.35355C11.5488 6.15829 11.5488 5.84171 11.3536 5.64645L10.6464 6.35355ZM6 1L6.35355 0.646446C6.15829 0.451184 5.84171 0.451184 5.64645 0.646446L6 1ZM0.646446 5.64645C0.451184 5.84171 0.451184 6.15829 0.646446 6.35355C0.841709 6.54881 1.15829 6.54881 1.35355 6.35355L0.646446 5.64645ZM11.3536 5.64645L6.35355 0.646446L5.64645 1.35355L10.6464 6.35355L11.3536 5.64645ZM5.64645 0.646446L0.646446 5.64645L1.35355 6.35355L6.35355 1.35355L5.64645 0.646446Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="Icons / 24 / User">
|
|
3
|
+
<g id="Vector 81">
|
|
4
|
+
<path d="M8 8C8 5.79086 9.79087 4 12 4C14.2091 4 16 5.79086 16 8C16 10.2091 14.2091 12 12 12C9.79087 12 8 10.2091 8 8Z" stroke="#CAC2D0" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M12 14C10.5245 14 9.0395 13.451 8.36915 13.1665C8.12951 13.0649 7.85796 13.0374 7.6242 13.152C5.4795 14.2028 4.10839 18.0542 6 19C8 20 12 20 12 20C12 20 16 20 18 19C19.8916 18.0542 18.5205 14.2028 16.3758 13.152C16.142 13.0374 15.8705 13.0649 15.6309 13.1665C14.9605 13.451 13.4755 14 12 14Z" stroke="#CAC2D0" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</g>
|
|
7
|
+
</g>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
<svg
|
|
2
|
+
width="148"
|
|
3
|
+
height="30"
|
|
4
|
+
viewBox="0 0 148 30"
|
|
5
|
+
fill="none"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
>
|
|
8
|
+
<path
|
|
9
|
+
d="M144.268 16.2701C144.075 16.7689 143.77 17.1645 143.351 17.457C142.931 17.7509 142.37 17.8976 141.67 17.8976C140.654 17.8976 139.862 17.604 139.293 17.0165C138.723 16.4293 138.369 15.6172 138.229 14.5808H148C148 13.3889 147.856 12.3049 147.567 11.3288C147.278 10.3532 146.853 9.51093 146.293 8.80236C145.732 8.09423 145.04 7.54564 144.218 7.157C143.394 6.76836 142.44 6.57422 141.355 6.57422C140.374 6.57422 139.476 6.75546 138.662 7.11815C137.848 7.48105 137.147 7.97333 136.561 8.59518C135.974 9.21714 135.519 9.95567 135.195 10.8106C134.871 11.6657 134.709 12.5856 134.709 13.5701C134.709 14.5549 134.862 15.4793 135.169 16.3427C135.475 17.2067 135.926 17.9537 136.522 18.5841C137.117 19.215 137.848 19.7114 138.715 20.0741C139.581 20.4368 140.575 20.6182 141.696 20.6182C142.554 20.6182 143.333 20.5016 144.034 20.2683C144.734 20.0352 145.343 19.7202 145.859 19.3226C146.376 18.9256 146.796 18.4635 147.12 17.9363C147.342 17.5748 147.514 17.1979 147.641 16.8077L144.268 16.2701ZM139.253 10.0591C139.743 9.5499 140.461 9.29486 141.407 9.29486C142.23 9.29486 142.9 9.55835 143.417 10.0853C143.933 10.6124 144.218 11.2989 144.27 12.1451H138.281C138.439 11.2642 138.763 10.5688 139.253 10.0591Z"
|
|
10
|
+
fill="white"
|
|
11
|
+
/>
|
|
12
|
+
<path
|
|
13
|
+
d="M129.956 8.62373H130.037C130.451 7.84238 130.846 7.48059 131.368 7.08977C131.89 6.69922 132.63 6.55664 133.44 6.55664C133.818 6.55664 134.106 6.59255 134.304 6.66329V9.8337H134.223C133.017 9.70971 132.026 9.96691 131.252 10.6064C130.478 11.2457 130.091 12.2848 130.091 13.7235V20.3842H126.418V6.71655H129.956V8.62373H129.956Z"
|
|
14
|
+
fill="white"
|
|
15
|
+
/>
|
|
16
|
+
<path
|
|
17
|
+
d="M124.454 18.5049V11.7419L124.453 11.7462V11.7411C124.453 10.1864 124.01 8.98159 123.126 8.12641C122.242 7.27122 120.793 6.84375 118.779 6.84375C117.798 6.84375 116.949 6.96485 116.231 7.20667C115.513 7.44866 114.918 7.76813 114.445 8.16524C113.972 8.56294 113.613 9.02486 113.368 9.55154C113.295 9.70991 113.235 9.87189 113.181 10.0357L116.007 11.2229H116.152C116.205 10.5839 116.441 10.113 116.862 9.81086C117.282 9.50867 117.912 9.3572 118.753 9.3572C119.506 9.3572 120.07 9.49981 120.447 9.7847C120.823 10.07 121.012 10.4544 121.012 10.9378C121.012 11.4391 120.749 11.7761 120.224 11.9483C119.699 12.1213 118.875 12.2853 117.755 12.4408C117.002 12.5443 116.297 12.6868 115.64 12.8683C114.984 13.0497 114.41 13.3046 113.92 13.6327C113.429 13.961 113.044 14.3757 112.764 14.8765C112.484 15.3777 112.344 15.9907 112.344 16.7161C112.344 18.0466 112.781 19.0571 113.657 19.7478C114.533 20.439 115.662 20.7844 117.046 20.7844C117.046 20.7844 117.962 20.7844 118.8 20.6514C119.813 20.4673 120.767 19.936 121.351 19.3453L121.485 20.4733H121.486L121.486 20.4742H124.927V20.3446C124.612 20.1203 124.454 19.5069 124.454 18.5049ZM121.275 15.7834C121.275 16.1117 121.205 16.427 121.065 16.7291C120.925 17.0315 120.719 17.2993 120.448 17.5324C120.176 17.7656 119.844 17.9559 119.45 18.1024C119.056 18.2494 118.605 18.3226 118.097 18.3226C117.467 18.3226 116.958 18.1975 116.573 17.947C116.188 17.6967 115.996 17.2602 115.996 16.6384C115.996 16.0166 116.223 15.5676 116.679 15.2909C117.134 15.0149 117.834 14.7727 118.78 14.5655C119.235 14.4617 119.686 14.3541 120.133 14.2414C120.579 14.1296 120.96 13.9785 121.275 13.7882V15.7834Z"
|
|
18
|
+
fill="white"
|
|
19
|
+
/>
|
|
20
|
+
<path
|
|
21
|
+
d="M106.038 6.34282C106.758 6.34282 107.411 6.47182 107.996 6.72902C108.581 6.98677 109.081 7.3418 109.495 7.79482C109.909 8.2477 110.233 8.78514 110.467 9.40672C110.701 10.0286 110.818 10.7121 110.818 11.4581V20.3834H107.145V11.9909C107.145 11.2449 106.938 10.6414 106.524 10.1793C106.11 9.71759 105.515 9.48656 104.742 9.48656C103.931 9.48656 103.26 9.77546 102.73 10.3525C102.198 10.9299 101.933 11.6892 101.933 12.6304V20.3834H98.2598V1.33398H101.933V7.94933H102.014C103.508 6.17499 106.038 6.34282 106.038 6.34282Z"
|
|
22
|
+
fill="white"
|
|
23
|
+
/>
|
|
24
|
+
<path
|
|
25
|
+
d="M90.7787 20.7839C88.762 20.7839 87.2044 20.3444 86.1064 19.4652C85.008 18.586 84.405 17.4183 84.2969 15.9616H87.6999C87.8256 16.7609 88.1543 17.3383 88.6856 17.6935C89.2166 18.0489 89.8964 18.2263 90.7247 18.2263C91.5349 18.2263 92.1603 18.0843 92.6017 17.8C93.0427 17.5161 93.2634 17.134 93.2634 16.6544C93.2634 16.3347 93.1595 16.0774 92.9528 15.8817C92.7457 15.6864 92.4756 15.5267 92.1426 15.4021C91.8092 15.2781 91.4223 15.1757 90.9813 15.0957C90.5398 15.0158 90.0854 14.9318 89.6174 14.8427C88.987 14.7186 88.3793 14.5762 87.7944 14.4164C87.209 14.2565 86.687 14.0259 86.228 13.7237C85.7687 13.4219 85.3995 13.031 85.1207 12.5514C84.8412 12.0718 84.702 11.459 84.702 10.713C84.702 9.96707 84.8459 9.32352 85.1341 8.78147C85.4219 8.23996 85.8229 7.78696 86.3359 7.4227C86.8492 7.05884 87.4475 6.78783 88.132 6.61017C88.816 6.43278 89.5541 6.34375 90.3465 6.34375C92.1831 6.34375 93.5964 6.75246 94.5868 7.56931C95.5768 8.38644 96.144 9.48747 96.2882 10.8729H92.9663C92.876 10.127 92.6059 9.60741 92.1561 9.31429C91.7058 9.02131 91.0846 8.8747 90.2925 8.8747C89.5722 8.8747 88.9962 9.00383 88.564 9.26104C88.132 9.51878 87.9159 9.89631 87.9159 10.3934C87.9159 10.6956 88.0239 10.9308 88.24 11.0994C88.456 11.2684 88.7396 11.4104 89.0907 11.5257C89.4418 11.6414 89.8469 11.7347 90.3061 11.8054C90.7652 11.8767 91.2379 11.9653 91.7239 12.0718C92.3 12.1964 92.8807 12.3382 93.466 12.4981C94.0509 12.6581 94.5774 12.8936 95.0459 13.2042C95.5139 13.5152 95.892 13.9236 96.1802 14.4297C96.468 14.936 96.6124 15.5888 96.6124 16.388C96.6124 17.0807 96.468 17.698 96.1802 18.2396C95.892 18.7817 95.4915 19.2388 94.9784 19.6117C94.4652 19.9847 93.853 20.2736 93.1418 20.4776C92.4304 20.6815 91.643 20.7839 90.7787 20.7839Z"
|
|
26
|
+
fill="white"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
d="M79.0586 1.33398H82.7316V20.3834H79.0586V1.33398Z"
|
|
30
|
+
fill="white"
|
|
31
|
+
/>
|
|
32
|
+
<path
|
|
33
|
+
d="M72.9004 1.33398H76.5734V20.3834H72.9004V1.33398Z"
|
|
34
|
+
fill="white"
|
|
35
|
+
/>
|
|
36
|
+
<path
|
|
37
|
+
d="M66.7969 1.33398H70.4699V4.58428H66.7969V1.33398ZM66.7969 6.71575H70.4699V20.3834H66.7969V6.71575Z"
|
|
38
|
+
fill="white"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
d="M60.8544 8.62373H60.9354C61.3494 7.84238 61.7444 7.48059 62.2669 7.08977C62.7889 6.69922 63.5281 6.55664 64.3384 6.55664C64.7165 6.55664 65.0043 6.59255 65.2026 6.66329V9.8337H65.1216C63.9151 9.70971 62.9247 9.96691 62.1507 10.6064C61.3764 11.2457 60.9894 12.2848 60.9894 13.7235V20.3842H57.3164V6.71655H60.8544V8.62373Z"
|
|
42
|
+
fill="white"
|
|
43
|
+
/>
|
|
44
|
+
<path
|
|
45
|
+
d="M50.2684 6.34282C50.9883 6.34282 51.6411 6.47182 52.2265 6.72902C52.8113 6.98677 53.311 7.3418 53.7253 7.79482C54.1394 8.2477 54.4634 8.78514 54.6976 9.40672C54.9314 10.0286 55.0488 10.7121 55.0488 11.4581V20.3834H51.3757V11.9909C51.3757 11.2449 51.1685 10.6414 50.7546 10.1793C50.3401 9.71759 49.7459 9.48656 48.972 9.48656C48.1618 9.48656 47.4908 9.77546 46.96 10.3525C46.4286 10.9299 46.1632 11.6892 46.1632 12.6304V20.3834H42.4902V1.33398H46.1632V7.94933H46.2443C47.7389 6.17499 50.2684 6.34282 50.2684 6.34282Z"
|
|
46
|
+
fill="white"
|
|
47
|
+
/>
|
|
48
|
+
<path
|
|
49
|
+
d="M33.2467 1.29688V6.50149H31.3223V9.50037H33.2467V17.0548C33.2467 17.0548 33.1172 19.8082 36.0224 20.5183C38.2591 21.0367 40.7226 20.0986 40.7226 20.0986L39.4796 16.9451C39.4796 16.9451 36.7403 18.2775 36.7403 15.8684C36.7403 13.3435 36.7403 9.50037 36.7403 9.50037L39.5426 9.48032L40.7226 6.50151H36.7403V1.29688H33.2467Z"
|
|
50
|
+
fill="white"
|
|
51
|
+
/>
|
|
52
|
+
<path
|
|
53
|
+
d="M25.5446 9.61142L21.1802 2.15489C20.4863 0.969999 18.7839 0 17.3966 0H8.66813C7.28131 0 5.57832 0.969999 4.88492 2.15489L0.5203 9.61142C-0.173433 10.7972 -0.173433 12.7362 0.5203 13.9209L4.6749 21.0193C5.36814 22.2049 6.53603 24.1241 7.26995 25.2856L9.75971 29.228C10.4936 30.3904 12.1035 30.2202 12.1035 28.8519V26.0205C12.1035 24.6523 13.7438 23.5325 15.1316 23.5325H17.3966C18.7839 23.5325 20.4864 22.5634 21.1803 21.3776L25.5446 13.9209C26.238 12.7362 26.238 10.7972 25.5446 9.61142ZM10.8084 17.4477C10.738 17.7033 10.5709 17.9163 10.3381 18.0475C10.1868 18.1336 10.0139 18.1793 9.83903 18.1793C9.47936 18.1793 9.14513 17.9878 8.96671 17.6795L5.97332 12.5241C5.69884 12.0497 5.86605 11.4429 6.34604 11.171C6.49853 11.0852 6.67108 11.0399 6.84514 11.0399C7.20499 11.0399 7.53955 11.2311 7.71831 11.539L10.7102 16.694C10.8441 16.924 10.8791 17.1918 10.8084 17.4477ZM15.028 18.1657C14.8755 18.2516 14.7031 18.297 14.5289 18.297C14.1692 18.297 13.8348 18.1056 13.656 17.7977L8.24417 8.47401C7.96953 7.99916 8.13705 7.39256 8.61741 7.12178C8.76921 7.03575 8.94193 6.99036 9.1165 6.99036C9.47634 6.99036 9.81075 7.18154 9.98932 7.48915L15.4 16.8125C15.6757 17.2859 15.509 17.8932 15.028 18.1657ZM20.1881 17.684C20.1176 17.9396 19.9504 18.1527 19.7173 18.284C19.5656 18.3698 19.3931 18.4152 19.2184 18.4152C18.8592 18.4152 18.5246 18.2242 18.3452 17.9168L10.516 4.42494C10.3826 4.19528 10.3478 3.92796 10.4185 3.67221C10.4891 3.41663 10.6565 3.20332 10.8896 3.07156C11.0409 2.98603 11.2128 2.94079 11.3868 2.94079C11.7469 2.94079 12.0816 3.13231 12.2602 3.44008L20.09 16.9314C20.2236 17.1609 20.2585 17.4282 20.1881 17.684Z"
|
|
54
|
+
fill="white"
|
|
55
|
+
/>
|
|
56
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="27" height="30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M25.545 9.611L21.18 2.155C20.486.97 18.784 0 17.397 0H8.668c-1.387 0-3.09.97-3.783 2.155L.52 9.61c-.693 1.186-.693 3.125 0 4.31l4.155 7.098a175.81 175.81 0 002.595 4.267l2.49 3.942c.734 1.162 2.344.992 2.344-.376V26.02c0-1.368 1.64-2.488 3.028-2.488h2.265c1.387 0 3.09-.969 3.783-2.154l4.365-7.457c.693-1.185.693-3.124 0-4.31zm-14.737 7.837a1.012 1.012 0 01-1.842.232l-2.993-5.156a.987.987 0 01.373-1.353 1.011 1.011 0 011.372.368l2.992 5.155c.134.23.17.498.098.754zm4.22.718a1.01 1.01 0 01-1.372-.368L8.244 8.474a.985.985 0 01.373-1.352 1.014 1.014 0 011.372.367l5.411 9.323a.985.985 0 01-.372 1.354zm5.16-.482a.986.986 0 01-.47.6 1.015 1.015 0 01-1.373-.367L10.516 4.425a.972.972 0 01-.098-.753.99.99 0 01.472-.6 1.012 1.012 0 011.37.368l7.83 13.491c.134.23.169.497.098.753z" fill="#fff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="148" height="30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M50.268 6.343c.72 0 1.373.13 1.958.387a4.42 4.42 0 011.5 1.065c.413.453.737.99.971 1.612.234.622.351 1.306.351 2.052v8.925h-3.672V11.99c0-.746-.208-1.35-.622-1.811-.414-.462-1.008-.693-1.782-.693-.81 0-1.481.289-2.012.866-.532.577-.797 1.337-.797 2.278v7.753H42.49V1.334h3.673V7.95h.081c1.495-1.775 4.024-1.607 4.024-1.607zM106.038 6.343c.72 0 1.373.13 1.958.387a4.415 4.415 0 011.499 1.065c.414.453.738.99.972 1.612.234.622.351 1.306.351 2.052v8.925h-3.673V11.99c0-.746-.207-1.35-.621-1.811-.414-.462-1.009-.693-1.782-.693-.811 0-1.482.289-2.012.866-.532.577-.797 1.337-.797 2.278v7.753H98.26V1.334h3.673V7.95h.081c1.494-1.775 4.024-1.607 4.024-1.607zM60.855 8.624h.08c.415-.782.81-1.143 1.332-1.534.522-.39 1.262-.533 2.072-.533.378 0 .666.036.864.106v3.17h-.08c-1.207-.123-2.198.134-2.972.773-.774.64-1.161 1.679-1.161 3.117v6.661h-3.673V6.717h3.538v1.907zM129.955 8.624h.081c.414-.782.809-1.143 1.332-1.534.522-.39 1.261-.533 2.071-.533.379 0 .666.036.865.106v3.17h-.081c-1.207-.123-2.197.134-2.971.773-.775.64-1.162 1.679-1.162 3.117v6.661h-3.673V6.717h3.538v1.907zM66.797 1.334h3.673v3.25h-3.673v-3.25zm0 5.382h3.673v13.668h-3.673V6.716zM72.9 1.334h3.673v19.05H72.9V1.334zM79.058 1.334h3.673v19.05h-3.673V1.334zM90.779 20.784c-2.017 0-3.574-.44-4.672-1.32-1.099-.878-1.702-2.046-1.81-3.503H87.7c.126.8.454 1.377.986 1.732.53.355 1.21.533 2.039.533.81 0 1.436-.142 1.877-.427.44-.283.662-.665.662-1.145 0-.32-.104-.577-.31-.773a2.382 2.382 0 00-.811-.48 6.853 6.853 0 00-1.161-.306c-.442-.08-.896-.164-1.364-.253a25.951 25.951 0 01-1.823-.426 5.427 5.427 0 01-1.567-.693 3.47 3.47 0 01-1.107-1.172c-.28-.48-.419-1.092-.419-1.838s.144-1.39.432-1.932a3.885 3.885 0 011.202-1.359 5.432 5.432 0 011.796-.812 8.798 8.798 0 012.215-.267c1.836 0 3.25.409 4.24 1.226.99.817 1.557 1.918 1.701 3.304h-3.322c-.09-.746-.36-1.266-.81-1.56-.45-.292-1.071-.439-1.863-.439-.72 0-1.297.13-1.729.387-.432.257-.648.635-.648 1.132 0 .302.108.537.324.706.216.169.5.31.85.426.352.116.757.21 1.216.28.46.071.932.16 1.418.266.576.125 1.157.267 1.742.427.585.16 1.112.395 1.58.706.468.31.846.72 1.134 1.225.288.506.433 1.16.433 1.958 0 .693-.145 1.31-.433 1.852-.288.542-.688 1-1.201 1.372-.513.373-1.126.662-1.837.866-.711.204-1.499.306-2.363.306zM144.268 16.27a2.516 2.516 0 01-.917 1.188c-.42.293-.981.44-1.681.44-1.016 0-1.808-.293-2.377-.881-.57-.587-.924-1.4-1.064-2.436H148c0-1.192-.144-2.276-.433-3.252-.289-.975-.714-1.818-1.274-2.526a5.744 5.744 0 00-2.075-1.646c-.824-.388-1.778-.582-2.863-.582-.981 0-1.879.181-2.693.544a6.474 6.474 0 00-2.101 1.477 6.586 6.586 0 00-1.366 2.215 7.724 7.724 0 00-.486 2.76c0 .984.153 1.909.46 2.772a6.26 6.26 0 001.353 2.242c.595.63 1.326 1.127 2.193 1.49.866.362 1.86.544 2.981.544.858 0 1.637-.117 2.338-.35a6.144 6.144 0 001.825-.946 5.127 5.127 0 001.782-2.515l-3.373-.537zm-5.015-6.21c.49-.51 1.208-.765 2.154-.765.823 0 1.493.264 2.01.79.516.528.801 1.214.853 2.06h-5.989c.158-.88.482-1.576.972-2.085zM33.247 1.296v5.205h-1.925V9.5h1.925v7.554s-.13 2.754 2.775 3.464c2.237.518 4.7-.42 4.7-.42l-1.242-3.153s-2.74 1.332-2.74-1.077V9.5l2.803-.02 1.18-2.979H36.74V1.296h-3.493zM124.453 18.505V11.74l-.001.005v-.005c0-1.555-.442-2.76-1.326-3.615-.885-.855-2.334-1.283-4.348-1.283-.98 0-1.83.121-2.547.363-.719.242-1.314.562-1.786.959a3.987 3.987 0 00-1.264 1.87l2.825 1.187h.146c.052-.639.289-1.11.709-1.412.42-.302 1.05-.453 1.891-.453.753 0 1.318.142 1.694.427.377.285.565.67.565 1.153 0 .502-.262.839-.788 1.01-.525.174-1.348.338-2.469.493-.753.104-1.458.246-2.115.428a5.894 5.894 0 00-1.72.764c-.49.329-.876.743-1.156 1.244-.28.501-.42 1.114-.42 1.84 0 1.33.438 2.34 1.313 3.031.876.692 2.005 1.037 3.389 1.037 0 0 .917 0 1.754-.133 1.013-.184 1.967-.715 2.552-1.306l.133 1.128h.002-.001 3.441v-.129c-.315-.224-.473-.838-.473-1.84zm-3.179-2.722c0 .328-.07.644-.21.946-.14.302-.346.57-.617.803a3.263 3.263 0 01-.998.57c-.394.147-.845.22-1.353.22-.63 0-1.138-.125-1.523-.375-.386-.25-.578-.687-.578-1.31 0-.62.227-1.07.683-1.347.455-.276 1.155-.518 2.101-.725.455-.104.906-.211 1.353-.324a4.161 4.161 0 001.142-.453v1.995zM25.545 9.611L21.18 2.155C20.486.97 18.784 0 17.397 0H8.668c-1.387 0-3.09.97-3.783 2.155L.52 9.61c-.693 1.186-.693 3.125 0 4.31l4.155 7.098a175.81 175.81 0 002.595 4.267l2.49 3.942c.734 1.162 2.344.992 2.344-.376V26.02c0-1.368 1.64-2.488 3.028-2.488h2.265c1.387 0 3.09-.969 3.783-2.154l4.365-7.457c.693-1.185.693-3.124 0-4.31zm-14.737 7.837a1.012 1.012 0 01-1.842.232l-2.993-5.156a.987.987 0 01.373-1.353 1.011 1.011 0 011.372.368l2.992 5.155c.134.23.17.498.098.754zm4.22.718a1.01 1.01 0 01-1.372-.368L8.244 8.474a.985.985 0 01.373-1.352 1.014 1.014 0 011.372.367l5.411 9.323a.985.985 0 01-.372 1.354zm5.16-.482a.986.986 0 01-.47.6 1.015 1.015 0 01-1.373-.367L10.516 4.425a.972.972 0 01-.098-.753.99.99 0 01.472-.6 1.012 1.012 0 011.37.368l7.83 13.491c.134.23.169.497.098.753z" fill="#fff"/></svg>
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<img v-if="src" :src="src" class="avatar-size" alt="">
|
|
3
|
+
<span v-else class="avatar-size">
|
|
4
|
+
{{ initials }}
|
|
5
|
+
</span>
|
|
6
|
+
</template>
|
|
7
|
+
|
|
8
|
+
<script setup lang="ts">
|
|
9
|
+
import { computed } from 'vue';
|
|
10
|
+
|
|
11
|
+
interface IAvatarProps {
|
|
12
|
+
/**
|
|
13
|
+
* Defines the src property of the image to be rendered.
|
|
14
|
+
*/
|
|
15
|
+
src?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Defines the name value that will be displayed as initials alongside the avatar.
|
|
18
|
+
*/
|
|
19
|
+
name: string;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
const props = defineProps<IAvatarProps>();
|
|
23
|
+
|
|
24
|
+
const initials = computed(() => {
|
|
25
|
+
const initials = props.name.match(/\b\w/g) || [];
|
|
26
|
+
return ((initials.shift() || "") + (initials.pop() || "")).toUpperCase();
|
|
27
|
+
});
|
|
28
|
+
</script>
|
|
29
|
+
|
|
30
|
+
<style scoped>
|
|
31
|
+
* {
|
|
32
|
+
--size: 32px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
span {
|
|
36
|
+
display: inline-flex;
|
|
37
|
+
align-items: center;
|
|
38
|
+
justify-content: center;
|
|
39
|
+
width: var(--size);
|
|
40
|
+
height: var(--size);
|
|
41
|
+
font-size: 12px;
|
|
42
|
+
font-family: var(--font-family);
|
|
43
|
+
line-height: var(--font-lineheight-2);
|
|
44
|
+
border-radius: 50%;
|
|
45
|
+
background-color: var(--brand-1, var(--purple));
|
|
46
|
+
color: var(--text-2, var(--primary-white));
|
|
47
|
+
outline: 1px solid var(--primary-white);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
img {
|
|
51
|
+
display: inline-flex;
|
|
52
|
+
vertical-align: middle;
|
|
53
|
+
border-radius: 50%;
|
|
54
|
+
padding: 0;
|
|
55
|
+
margin: 0;
|
|
56
|
+
height: var(--size);
|
|
57
|
+
width: var(--size);
|
|
58
|
+
object-fit: cover;
|
|
59
|
+
border: 2px solid var(--purple-20);
|
|
60
|
+
}
|
|
61
|
+
</style>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<NuxtLink class="breadcrumb">
|
|
3
|
+
<slot />
|
|
4
|
+
</NuxtLink>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<style scoped>
|
|
8
|
+
.breadcrumb {
|
|
9
|
+
color: var(--grey-50);
|
|
10
|
+
text-decoration: none;
|
|
11
|
+
}
|
|
12
|
+
.breadcrumb:not(:first-child):before {
|
|
13
|
+
display: inline-block;
|
|
14
|
+
content: "/";
|
|
15
|
+
color: var(--grey-50);
|
|
16
|
+
padding: 0 8px;
|
|
17
|
+
}
|
|
18
|
+
.breadcrumb:focus-visible, .breadcrumb:hover {
|
|
19
|
+
outline: none;
|
|
20
|
+
text-decoration: underline;
|
|
21
|
+
color: var(--purple);
|
|
22
|
+
}
|
|
23
|
+
</style>
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<header
|
|
3
|
+
:class="{ sticky }"
|
|
4
|
+
role="banner"
|
|
5
|
+
>
|
|
6
|
+
<button
|
|
7
|
+
class="sidebar-toggle"
|
|
8
|
+
@click="toggleSidebar">
|
|
9
|
+
<a-icon
|
|
10
|
+
class="icon"
|
|
11
|
+
icon="16:apptegy"
|
|
12
|
+
/>
|
|
13
|
+
<span>Menu</span>
|
|
14
|
+
</button >
|
|
15
|
+
<div class="header__breadcrumbs">
|
|
16
|
+
<slot name="breadcrumbs" />
|
|
17
|
+
</div>
|
|
18
|
+
<slot name="org-select" />
|
|
19
|
+
<slot name="user-controls" />
|
|
20
|
+
<div
|
|
21
|
+
ref="settingsTriggerRef"
|
|
22
|
+
aria-controls="settings-dropdown"
|
|
23
|
+
:aria-expanded="active"
|
|
24
|
+
aria-haspopup="listbox"
|
|
25
|
+
role="combobox"
|
|
26
|
+
tabindex="0"
|
|
27
|
+
class="header__dropdown"
|
|
28
|
+
@keydown="keydownActionsOnTrigger($event, userSettingsOptions, settingsOptionsRef, settingsTriggerRef, false, '')"
|
|
29
|
+
@click.prevent="toggleDropdown($event, settingsOptionsRef)">
|
|
30
|
+
<NavAvatar
|
|
31
|
+
:name="user.name"
|
|
32
|
+
:src="user.avatar"
|
|
33
|
+
/>
|
|
34
|
+
<a-icon
|
|
35
|
+
class="icon"
|
|
36
|
+
icon="24:hamburger"
|
|
37
|
+
/>
|
|
38
|
+
<span class="sr-only">Account Settings</span>
|
|
39
|
+
</div>
|
|
40
|
+
<div
|
|
41
|
+
v-show="active"
|
|
42
|
+
id="settings-dropdown"
|
|
43
|
+
class="options-dropdown"
|
|
44
|
+
role="listbox"
|
|
45
|
+
>
|
|
46
|
+
<div
|
|
47
|
+
v-for ="(option, idx) in userSettingsOptions"
|
|
48
|
+
v-on-click-outside="onClickOutsideHandler"
|
|
49
|
+
ref="settingsOptionsRef"
|
|
50
|
+
:key="option.label"
|
|
51
|
+
role="option"
|
|
52
|
+
class="option"
|
|
53
|
+
tabindex="-1"
|
|
54
|
+
@keydown="handleKeydownAction(userSettingsOptions, idx, $event, settingsOptionsRef, settingsTriggerRef)"
|
|
55
|
+
@click="handleSelectedClick(idx)"
|
|
56
|
+
>
|
|
57
|
+
<NuxtLink :to="option.url">
|
|
58
|
+
{{ option.label }}
|
|
59
|
+
<a-icon
|
|
60
|
+
:icon="option.icon"
|
|
61
|
+
color="black"
|
|
62
|
+
font-size="32px"
|
|
63
|
+
/>
|
|
64
|
+
</NuxtLink>
|
|
65
|
+
</div>
|
|
66
|
+
</div>
|
|
67
|
+
</header>
|
|
68
|
+
</template>
|
|
69
|
+
|
|
70
|
+
<script setup lang="ts">
|
|
71
|
+
import { ref } from 'vue';
|
|
72
|
+
import { useDropdown } from '../../composables/accessibleActions.js';
|
|
73
|
+
import { vOnClickOutside } from '@vueuse/components';
|
|
74
|
+
|
|
75
|
+
const {
|
|
76
|
+
active,
|
|
77
|
+
toggleDropdown,
|
|
78
|
+
closeDropdown,
|
|
79
|
+
keydownActionsOnTrigger,
|
|
80
|
+
handleKeydown,
|
|
81
|
+
onClickOutsideHandler,
|
|
82
|
+
} = useDropdown();
|
|
83
|
+
|
|
84
|
+
interface IHeaderProps {
|
|
85
|
+
user: {
|
|
86
|
+
name: string;
|
|
87
|
+
avatar?: string;
|
|
88
|
+
};
|
|
89
|
+
sticky?: boolean;
|
|
90
|
+
userSettingsOptions: Array<any>;
|
|
91
|
+
selectedSetting?: {}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
const props = defineProps<IHeaderProps>();
|
|
95
|
+
|
|
96
|
+
const settingsTriggerRef = ref();
|
|
97
|
+
const settingsOptionsRef = ref();
|
|
98
|
+
|
|
99
|
+
const emit = defineEmits(['toggle-sidebar', 'select-setting']);
|
|
100
|
+
|
|
101
|
+
function handleSelectedClick(index: number) {
|
|
102
|
+
emit('select-setting', index);
|
|
103
|
+
closeDropdown();
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
function handleKeydownAction(userSettingsOptions: any[], idx: number, $event: { key: string | boolean; }, optionRef: { focus: () => void; }[], dropdownTriggerRef: { focus: () => void; }) {
|
|
107
|
+
emit('select-setting', idx);
|
|
108
|
+
handleKeydown(userSettingsOptions, idx, $event, optionRef, dropdownTriggerRef);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
function toggleSidebar() {
|
|
112
|
+
emit('toggle-sidebar');
|
|
113
|
+
}
|
|
114
|
+
</script>
|
|
115
|
+
|
|
116
|
+
<style scoped>
|
|
117
|
+
header {
|
|
118
|
+
grid-area: navheader;
|
|
119
|
+
display: grid;
|
|
120
|
+
grid-auto-flow: column;
|
|
121
|
+
grid-template-columns: auto 1fr auto;
|
|
122
|
+
gap: 16px;
|
|
123
|
+
align-items: center;
|
|
124
|
+
padding: 24px 64px 24px 36px;
|
|
125
|
+
width: 100%;
|
|
126
|
+
background-color: var(--primary-white);
|
|
127
|
+
font: var(--font-regular);
|
|
128
|
+
}
|
|
129
|
+
@media only screen and (max-width: 960px) {
|
|
130
|
+
header {
|
|
131
|
+
padding-left: 32px;
|
|
132
|
+
padding-right: 32px;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
header.sticky {
|
|
136
|
+
position: sticky;
|
|
137
|
+
}
|
|
138
|
+
header .sidebar-toggle {
|
|
139
|
+
display: flex;
|
|
140
|
+
align-items: center;
|
|
141
|
+
gap: 4px;
|
|
142
|
+
background: var(--purple-20);
|
|
143
|
+
border: none;
|
|
144
|
+
border-radius: 4px;
|
|
145
|
+
padding: 8px 16px;
|
|
146
|
+
color: var(--purple);
|
|
147
|
+
cursor: pointer;
|
|
148
|
+
}
|
|
149
|
+
header .sidebar-toggle:focus {
|
|
150
|
+
outline: none;
|
|
151
|
+
box-shadow: 0 0 0 2px var(--primary-white), 0 0 0 3px var(--purple);
|
|
152
|
+
}
|
|
153
|
+
header .header__dropdown {
|
|
154
|
+
font-size: 24px;
|
|
155
|
+
min-width: 64px;
|
|
156
|
+
width: 64px;
|
|
157
|
+
max-width: 64px;
|
|
158
|
+
border: none;
|
|
159
|
+
padding: 0;
|
|
160
|
+
outline: none;
|
|
161
|
+
color: var(--purple);
|
|
162
|
+
background: var(--purple-20);
|
|
163
|
+
border-radius: 16px;
|
|
164
|
+
overflow: hidden;
|
|
165
|
+
text-align: left;
|
|
166
|
+
position: relative;
|
|
167
|
+
display: flex;
|
|
168
|
+
align-items: center;
|
|
169
|
+
cursor: pointer;
|
|
170
|
+
}
|
|
171
|
+
header .header__dropdown:focus {
|
|
172
|
+
box-shadow: 0 0 0 2px var(--primary-white), 0 0 0 3px var(--purple);
|
|
173
|
+
}
|
|
174
|
+
header .header__dropdown .avatar-container:focus {
|
|
175
|
+
outline: none;
|
|
176
|
+
}
|
|
177
|
+
header .options-dropdown {
|
|
178
|
+
min-height: 100px;
|
|
179
|
+
position: absolute;
|
|
180
|
+
width: 198px;
|
|
181
|
+
right: 65px;
|
|
182
|
+
top: 80px;
|
|
183
|
+
background-color: #FFFFFF;
|
|
184
|
+
border-radius: 4px;
|
|
185
|
+
box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.06);
|
|
186
|
+
padding: 12px 0;
|
|
187
|
+
z-index: 10;
|
|
188
|
+
}
|
|
189
|
+
header .options-dropdown .option {
|
|
190
|
+
padding: 12px 16px;
|
|
191
|
+
cursor: pointer;
|
|
192
|
+
}
|
|
193
|
+
header .options-dropdown .option a {
|
|
194
|
+
color: #333;
|
|
195
|
+
text-decoration: none;
|
|
196
|
+
}
|
|
197
|
+
header .options-dropdown .option:focus-visible, header .options-dropdown .option:hover {
|
|
198
|
+
background-color: #F8F6FC;
|
|
199
|
+
}
|
|
200
|
+
</style>
|