-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Working on the search box * Got the search box kind of working. * Working on search still * Got the search working as expected * Added appearance * Cleanup * Added a utility group. * Removed the HelloWorld component. * Improving the styles * improved the hover states. * Got the links working well. * Update utility-list.js * Update app-header.vue * Get the submit to work well too * Update app.css.yml * Got the prefix to work automatically * Bump to 2.5.0 * fixed some specs * Document backgrounds * Update package.json
- Loading branch information
1 parent
2b7b92b
commit 9fd2776
Showing
23 changed files
with
174 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
list: list-style-none | ||
group: uppercase text-12 gray-500 m-t-24 medium p-l-8 p-r-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import css from './utility-group.css.yml' | ||
import UtilityItem from '@/components/utility-item/utility-item.vue' | ||
|
||
export default { | ||
name: 'utility-group', | ||
|
||
components: { UtilityItem }, | ||
|
||
props: { | ||
group: { | ||
type: Object, | ||
required: true, | ||
}, | ||
}, | ||
|
||
data() { | ||
return { | ||
css: css, | ||
} | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<li v-if="group.utilities.length > 0"> | ||
<h5 :class="css.group">{{ group.name }}</h5> | ||
<ul :class="css.list"> | ||
<utility-item | ||
v-for="utility in group.utilities" | ||
:utility="utility" | ||
:key="utility.name" /> | ||
</ul> | ||
</li> | ||
</template> | ||
|
||
<script src="./utility-group.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
link: no-underline ease-300ms gray-600 hover:purple-600 | ||
item: bg-color rounded-4 ease-300ms | ||
item__active: purple-100 | ||
item__inactive: transparent hover:teal-100 | ||
|
||
link: no-underline ease-300ms block p-l-8 p-r-8 | ||
link__active: purple-600 click-none | ||
link__inactive: gray-600 hover:teal-700 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
container: > | ||
hidden lg:block | ||
fixed pin-t-64 pin-l-0 pin-b-0 w-280 overflow-y-auto | ||
p-l-32 p-r-32 p-b-32 p-t-16 | ||
align-left text-14 leading-32 medium | ||
list: list-style-none | ||
group: uppercase text-12 gray-500 m-t-24 medium | ||
fixed pin-t-72 pin-l-0 pin-b-0 w-280 overflow-y-auto | ||
p-l-24 p-r-32 p-b-24 | ||
align-left text-14 leading-32 medium list-style-none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
header: > | ||
fixed pin-t-0 pin-l-0 pin-r-0 | ||
bg-color white z-100 | ||
h-64 leading-64 | ||
p-l-16 p-r-16 lg:p-l-32 lg:p-r-32 | ||
border: border border-thin border-b-solid border-color gray-200 | ||
header: | ||
classes: > | ||
fixed pin-t-0 pin-l-0 pin-r-0 | ||
bg-color white z-100 | ||
h-72 leading-72 | ||
p-l-16 p-r-16 lg:p-l-32 lg:p-r-32 | ||
border border-thin border-b-solid border-color | ||
style: 'border-color: var(--gray-200)' | ||
logo: gray-800 text-24 medium | ||
form: > | ||
bg-color gray-200 rounded-4 border border-solid border-thin h-40 w-400 | ||
absolute pin-l-320 pin-t-16 | ||
input: > | ||
w-100% appearance-none appearance-none block border-none font-default | ||
gray-500 text-16 indent-16 h-40 outline-none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,2 @@ | ||
app: font-default | ||
content: > | ||
relative | ||
pin-t-64 lg:pin-l-280 | ||
p-16 lg:p-32 | ||
content: relative pin-t-72 lg:pin-l-320 p-t-32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.