Assets refactor: subdirectories added, files moved, links updated.
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div class="app-background">
|
||||
<img src="./assets/bg-gradient.svg" aria-hidden="true" />
|
||||
<img src="@/assets/Macrame-Logo-white.svg" class="logo" aria-hidden="true" />
|
||||
<img src="./assets/img/bg-gradient.svg" aria-hidden="true" />
|
||||
<img src="@/assets/img/Macrame-Logo-white.svg" class="logo" aria-hidden="true" />
|
||||
</div>
|
||||
<MainMenu />
|
||||
<RouterView />
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 644 KiB |
|
Before Width: | Height: | Size: 3.2 MiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
|
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 261.76 226.69"><path d="M161.096.001l-30.225 52.351L100.647.001H-.005l130.877 226.688L261.749.001z" fill="#41b883"/><path d="M161.096.001l-30.225 52.351L100.647.001H52.346l78.526 136.01L209.398.001z" fill="#34495e"/></svg>
|
||||
|
Before Width: | Height: | Size: 276 B |
|
|
@ -1,6 +1,6 @@
|
|||
@import './_macro';
|
||||
@import './_mcrm-block';
|
||||
@import './_panel';
|
||||
@import './style/_macro';
|
||||
@import './style/_mcrm-block';
|
||||
@import './style/_panel';
|
||||
|
||||
@import 'tailwindcss';
|
||||
|
||||
|
|
|
|||
|
|
@ -1,19 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.2.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
|
||||
<g>
|
||||
<defs>
|
||||
<path id="SVGID_1_" d="M0,0v100h100V0H0z M99,79c0,11-9,20-20,20H21C10,99,1,90,1,79V21C1,10,10,1,21,1h58c11,0,20,9,20,20V79z"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="0" y1="50" x2="100" y2="50">
|
||||
<stop offset="0" style="stop-color:#FFFFFF"/>
|
||||
<stop offset="1" style="stop-color:#000000"/>
|
||||
</linearGradient>
|
||||
<path style="clip-path:url(#SVGID_2_);fill:url(#SVGID_3_);" d="M80,100H20C9,100,0,91,0,80V20C0,9,9,0,20,0h60c11,0,20,9,20,20v60
|
||||
C100,91,91,100,80,100z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 978 B |
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<nav id="main-menu">
|
||||
<button id="menu-toggle" :class="menuOpen ? 'open' : ''" @click="menuOpen = !menuOpen">
|
||||
<img class="logo" src="@/assets/Macrame-Logo-gradient.svg" aria-hidden="true" />
|
||||
<img class="logo" src="@/assets/img/Macrame-Logo-gradient.svg" aria-hidden="true" />
|
||||
<IconX :class="{ 'opacity-0': !menuOpen }" />
|
||||
</button>
|
||||
<ul :class="menuOpen ? 'open' : ''">
|
||||
|
|
|
|||