Aaron Brock ☂️

Results 10 issues of Aaron Brock ☂️

I have the following binding from my Firestore collection to my state: ```js state: { assets: [], }, actions: { bindAssets: firestoreAction(({ bindFirestoreRef }) => { return bindFirestoreRef('assets', db.collection('assets')) }),...

feature request
firestore

I'm writing a testing suite that spins up some resource on `SetupSuite` (in my case a virtual machine), runs some tests against it, then destroys the resource on `TearDownSuite`. Now,...

Hello, I'm brand new to Gasby & this theme. I was just trying to get the example working, to do this I cloned the repo, navigated to the `gatsby-theme-apollo/example` directory...

This PR adds the following configuration options to the `config.toml`: ``` footerButtonTarget = "/contact" footerButtonText = "Get in Touch" footerCallToAction = "Let's Start a Project" footerTopTitle = "Contact me" headerButtonTarget...

This PR changes smooth scrolling from using `javascript` to using a css only solution: ``` html { scroll-behavior: smooth; } ``` Which is more performant & nice and everything &...

I have the following two files: `+page.svelte`: ```svelte var test = 'test'; ``` and `+page.ts`: ```typescript var test = 'test'; ``` However, when I run `eslint` I get different results...

Take the following for example, I cannot tell the difference between suggestions 2-4 since their beginnings are the same and their endings are trunkated: ![Screenshot_20220422-180125_Sesame.jpg](https://user-images.githubusercontent.com/25732263/164815556-bd7cd713-3f93-4428-93ef-efcdda27c8af.jpg) It would be far more...

When selecting a search engine the clickable box isn't centered around the icon you click on. As seen in: ![Screenshot_20220422-175637_Sesame~2.jpg](https://user-images.githubusercontent.com/25732263/164815143-91fdddb2-81e0-4f60-8bd2-425b45a8ec09.jpg) This leads to missclicking if you are just a tiny...

If I completely disable the theme saturation, it comes out with a gray background. I, personally, prefer blank white backgrounds with black text for legibility reasons. Would it be possible...

Hey, For my use case, I needed this application dockerized. So in this PR I update the application to use the [node-server](https://kit.svelte.dev/docs/adapter-node#environment-variables) & added a Dockerfile / .dockerignore. Please note,...