Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create new Intro screen #138

Merged
merged 25 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
755d185
create new intro screen
johnarban Apr 1, 2024
8c10e20
fix sizing
johnarban Apr 1, 2024
3d876ba
use shorter text
johnarban Apr 1, 2024
ba64b7a
Try an x icon just outside overlay instead of icon in middle of overlay
patudom Apr 2, 2024
e4badb9
Small text edits and right align text in right boxes
patudom Apr 2, 2024
fb26f7e
I prefer making it possible to play the gif..
patudom Apr 2, 2024
a2777b9
update height and font to fit small screens
johnarban Apr 2, 2024
016d6bd
add book icon
johnarban Apr 2, 2024
2a5da40
Merge remote-tracking branch 'upstream/last-ui-updates' into pr/138
patudom Apr 2, 2024
773e40f
Put back tap to close icon and remove x
patudom Apr 2, 2024
41947c4
update eclipse timer close touch target
johnarban Apr 2, 2024
b19f72b
Adjust bottom content icons a bit
patudom Apr 2, 2024
5e27cd3
Merge branch 'more-final-fixes' of https://github.com/johnarban/solar…
patudom Apr 2, 2024
c143411
update intro styling per AG
johnarban Apr 2, 2024
77f877a
Change to top x to close and edit text
patudom Apr 2, 2024
52faa35
Text updates
patudom Apr 2, 2024
d15f9f7
fix horizontal and move location settings
johnarban Apr 2, 2024
c2ab8ac
Flip order of timer/book buttons to match overlay text
patudom Apr 2, 2024
5a3deeb
add back checkbox
johnarban Apr 2, 2024
d5ae7ef
Merge branch 'more-final-fixes' of https://github.com/johnarban/solar…
johnarban Apr 2, 2024
5a4b69e
fix controls layout
johnarban Apr 2, 2024
b2d34e7
Switch checkbox option to be an active check for getting the old inte…
patudom Apr 2, 2024
0b0cd81
Flip control box and time button to original order
patudom Apr 2, 2024
3c6cddb
Update user guide to reflect gear location change
patudom Apr 3, 2024
430feba
Missed a number change in user guide; lighten links to meet contrast …
patudom Apr 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions src/ArrowSVG.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<template>
<svg :style="style" xmlns="http://www.w3.org/2000/svg" viewBox="-1 -4 63 70">
<path d="M2 65Q2 15 46.5 7.6" fill="none" stroke-width="6" stroke-miterlimit="10" pointer-events="stroke"/>
<path d="M55.4 6.1 44.5 14l2-6.4-4-5.4Z" stroke-width="6" stroke-miterlimit="10" pointer-events="all"/>
</svg>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
name: 'ArrowSvg',
props: {
color: {
type: String,
default: 'currentColor'
},
width: {
type: String,
default: "50px"
},
},

computed: {
style() {
return {
stroke: this.color,
width: this.width
};
}
}

});
</script>
Loading
Loading