Skip to content
This repository has been archived by the owner on Mar 15, 2023. It is now read-only.

Commit

Permalink
App menu fixes (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya101master authored Sep 1, 2022
1 parent 3dbe36f commit c45f38e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
run:
yarn run serve
yarn start
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ yarn install

### Compiles and hot-reloads for development
```
yarn run serve
yarn start
```

### Compiles and minifies for production
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"start": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"serve:standalone": "vue-cli-service serve --mode standalone"
Expand Down
3 changes: 2 additions & 1 deletion src/components/Menu/GridItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export default {
color: black;
padding: 10px 5px;
width: 25%;
height: min-content;
gap:2px;
}
Expand All @@ -39,6 +40,6 @@ export default {
box-shadow: 1px 1px lightgray;
padding: 10%;
width: 90%;
height: auto;
height: min-content;
}
</style>
1 change: 1 addition & 0 deletions src/components/NavbarMobile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export default {
text-decoration: none;
-webkit-text-decoration: var(--typography-button-text-decoration, none);
text-decoration: var(--typography-button-text-decoration, none);
color: var(--bs-secondary);
}
.tab .tab--text-label {
color: rgba(var(--bs-on-primary), 0.6);
Expand Down

0 comments on commit c45f38e

Please sign in to comment.