Skip to content

Commit

Permalink
some small improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
insberr committed Mar 29, 2023
1 parent 9b2ea1d commit e7fc40c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/eggs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
/*@media (max-width: 369px) {
@include egg(magenta,yellow,"Your screen is too small to be supported, sorry!");
}*/
@media (width: 420px) and (height: 420px) {
@include egg(darkgreen, lightgreen, 'Smoke weed everyday');
}
@media (width: 666px) and (height: 666px) {
@include egg(darkred, red, '666');
}
// @media (width: 420px) and (height: 420px) {
// @include egg(darkgreen, lightgreen, 'Smoke weed everyday');
// }
// @media (width: 666px) and (height: 666px) {
// @include egg(darkred, red, '666');
// }
3 changes: 2 additions & 1 deletion src/pages/settings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,8 @@ export function SettingsPage() {
cols={5}
value={JSON.stringify(sch.terms)}
onChange={(e) => {
dispatch(setTerms(JSON.parse(e.target.value)));
// the below line is commented out to keep people from messing with it
// dispatch(setTerms(JSON.parse(e.target.value)));
}}
/>
</Form.Group>
Expand Down

0 comments on commit e7fc40c

Please sign in to comment.