====== Mobile-Friendly Trading Wiki ======
// Install the ''Mobile Template'' plugin first: [[https://www.dokuwiki.org/plugin:mobiletemplate|MobileTemplate Plugin]] //
===== Viewport Setup =====
~~META~~ viewport ~~"~~width=device-width, initial-scale=1.0~~"~~
===== Responsive Tables =====
**Before (Desktop-Only):**
^ Strategy ^ Indicators ^ Target Win Rate ^
| Covered Calls | IV Rank + Volume Profile | 85% |
**After (Mobile-Friendly):**
^ Strategy ^ Indicators ^ Target Win Rate ^
| Covered Calls | IV Rank + Volume Profile | 85% |
===== Collapsible Sections =====
^ Metric ^ Ideal Value ^
| Win Rate | ≥60% |
| Avg Risk/Reward | 1:2 |
===== Touch-Friendly Elements =====
**Button Example:**
[[journal|Add Trade]]
**Swipe Navigation:**
~~NAVIGATION~~ mobile ~~"~~swipe:yes~~"~~
===== Mobile-Specific CSS =====
/* Force readable font sizes */
body.mobile {
font-size: 16px !important;
line-height: 1.6;
}
/* Compact tables */
.mobile table.responsive {
font-size: 14px;
overflow-x: auto;
}
/* Tap targets */
.mobile a {
min-width: 44px;
min-height: 44px;
}