Skip to content

Commit

Permalink
Add css and dashboard demonstration
Browse files Browse the repository at this point in the history
  • Loading branch information
JerBouma committed Jun 30, 2024
1 parent d3c11a1 commit 8349169
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
Binary file added app/assets/financetoolkit-dashboard.mov
Binary file not shown.
27 changes: 27 additions & 0 deletions app/assets/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/* Hide elements with class "mobile-only" on screens wider than 768px (common breakpoint for mobile) */
@media (min-width: 768px) {
.mobile-only {
display: none;
}
}

/* Show elements with class "mobile-only" on screens smaller than 768px */
@media (max-width: 767px) {
.mobile-only {
display: block;
}
}

/* Hide elements with class "mobile-only" on screens wider than 768px (common breakpoint for mobile) */
@media (min-width: 768px) {
.desktop-only {
display: block;
}
}

/* Show elements with class "mobile-only" on screens smaller than 768px */
@media (min-width: 767px) {
.desktop-only {
display: none;
}
}

0 comments on commit 8349169

Please sign in to comment.