Changeset aa99826 in OpenWorkouts-current for ow


Ignore:
Timestamp:
Feb 15, 2019, 12:24:34 PM (5 years ago)
Author:
Segundo Fdez <segun.2@…>
Branches:
current, feature/docs, master
Children:
d459ee2
Parents:
f556d1e
Message:

update navigation to hide dashboard button on responsive

Location:
ow/static
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ow/static/css/main.css

    rf556d1e raa99826  
    704704  flex-grow: 1;
    705705  text-align: center;
     706  /* this is for the dashboard li element */
     707}
     708.nav-site li:first-child {
     709  display: none;
     710}
     711@media (min-width: 800px) {
     712  .nav-site li:first-child {
     713    display: inline-block;
     714  }
    706715}
    707716.nav-site a {
  • ow/static/less/modules/header.less

    rf556d1e raa99826  
    6767        flex-grow: 1;
    6868        text-align: center;
     69        /* this is for the dashboard li element */
     70        &:first-child {
     71            display: none;
     72            @media (min-width: @screen-m){
     73                display: inline-block;
     74            }
     75        }
    6976    }
    7077    a{
Note: See TracChangeset for help on using the changeset viewer.