Merge pull request #387 from SamR1/fix-workouts-navigation
Fix workouts navigation
This commit is contained in:
Vendored
+1
-1
@@ -1 +1 @@
|
|||||||
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><!--[if IE]><link rel="icon" href="/favicon.ico"><![endif]--><link rel="stylesheet" href="/static/css/fork-awesome.min.css"/><link rel="stylesheet" href="/static/css/leaflet.css"/><title>FitTrackee</title><script defer="defer" src="/static/js/chunk-vendors.b1590c25.js"></script><script defer="defer" src="/static/js/app.b65cb444.js"></script><link href="/static/css/app.53424207.css" rel="stylesheet"><link rel="icon" type="image/png" sizes="32x32" href="/img/icons/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/img/icons/favicon-16x16.png"><link rel="manifest" href="/manifest.json"><meta name="theme-color" content="#4DBA87"><meta name="apple-mobile-web-app-capable" content="no"><meta name="apple-mobile-web-app-status-bar-style" content="default"><meta name="apple-mobile-web-app-title" content="fittrackee_client"><link rel="apple-touch-icon" href="/img/icons/apple-touch-icon-152x152.png"><link rel="mask-icon" href="/img/icons/safari-pinned-tab.svg" color="#4DBA87"><meta name="msapplication-TileImage" content="/img/icons/msapplication-icon-144x144.png"><meta name="msapplication-TileColor" content="#000000"></head><body><noscript><strong>We're sorry but FitTrackee doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html>
|
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><!--[if IE]><link rel="icon" href="/favicon.ico"><![endif]--><link rel="stylesheet" href="/static/css/fork-awesome.min.css"/><link rel="stylesheet" href="/static/css/leaflet.css"/><title>FitTrackee</title><script defer="defer" src="/static/js/chunk-vendors.b1590c25.js"></script><script defer="defer" src="/static/js/app.6dae9e95.js"></script><link href="/static/css/app.ce91f57c.css" rel="stylesheet"><link rel="icon" type="image/png" sizes="32x32" href="/img/icons/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/img/icons/favicon-16x16.png"><link rel="manifest" href="/manifest.json"><meta name="theme-color" content="#4DBA87"><meta name="apple-mobile-web-app-capable" content="no"><meta name="apple-mobile-web-app-status-bar-style" content="default"><meta name="apple-mobile-web-app-title" content="fittrackee_client"><link rel="apple-touch-icon" href="/img/icons/apple-touch-icon-152x152.png"><link rel="mask-icon" href="/img/icons/safari-pinned-tab.svg" color="#4DBA87"><meta name="msapplication-TileImage" content="/img/icons/msapplication-icon-144x144.png"><meta name="msapplication-TileColor" content="#000000"></head><body><noscript><strong>We're sorry but FitTrackee doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html>
|
||||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
-1
File diff suppressed because one or more lines are too long
+1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+2
-2
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+2
-2
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
@@ -131,6 +131,7 @@
|
|||||||
|
|
||||||
.workout-arrow {
|
.workout-arrow {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
padding: $default-padding;
|
||||||
&.inactive {
|
&.inactive {
|
||||||
color: var(--disabled-color);
|
color: var(--disabled-color);
|
||||||
cursor: default;
|
cursor: default;
|
||||||
@@ -168,7 +169,13 @@
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding: 0 $default-padding * 0.3;
|
padding: 0 $default-padding * 0.3;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: $small-limit) {
|
||||||
|
.workout-arrow {
|
||||||
|
padding: $default-padding * 0.5;
|
||||||
|
}
|
||||||
|
.workout-card-title {
|
||||||
@media screen and (max-width: $small-limit) {
|
@media screen and (max-width: $small-limit) {
|
||||||
.fa-download,
|
.fa-download,
|
||||||
.fa-trash,
|
.fa-trash,
|
||||||
@@ -178,4 +185,5 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -184,6 +184,9 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
::v-deep(.card) {
|
::v-deep(.card) {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
.card-title {
|
||||||
|
padding: $default-padding $default-padding * 1.5;
|
||||||
|
}
|
||||||
.card-content {
|
.card-content {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|||||||
@@ -4,6 +4,28 @@
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
overflow-y: scroll;
|
||||||
|
scrollbar-gutter: stable both-edges;
|
||||||
|
|
||||||
|
&::-webkit-scrollbar {
|
||||||
|
width: $scrollbar-width;
|
||||||
|
height: $scrollbar-height;
|
||||||
|
}
|
||||||
|
&::-webkit-scrollbar-track {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
&::-webkit-scrollbar-thumb {
|
||||||
|
background: transparent;
|
||||||
|
border-radius: $scrollbar-radius;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
&::-webkit-scrollbar-thumb {
|
||||||
|
background: var(--scroll-thumb-color);
|
||||||
|
}
|
||||||
|
&::-webkit-scrollbar-track {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#app {
|
#app {
|
||||||
|
|||||||
@@ -76,4 +76,6 @@
|
|||||||
--password-color-good: #acc578;
|
--password-color-good: #acc578;
|
||||||
--password-color-strong: #57c255;
|
--password-color-strong: #57c255;
|
||||||
|
|
||||||
|
--scroll-thumb-color: #b9bcbd;
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -19,3 +19,10 @@ $default-padding: 10px;
|
|||||||
$default-margin: $default-padding;
|
$default-margin: $default-padding;
|
||||||
|
|
||||||
$border-radius: 4px;
|
$border-radius: 4px;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* === SCROLLBAR ===
|
||||||
|
*/
|
||||||
|
$scrollbar-height : $default-padding * .5;
|
||||||
|
$scrollbar-width : $scrollbar-height;
|
||||||
|
$scrollbar-radius : $default-padding;
|
||||||
Reference in New Issue
Block a user