themefoundation / mo-js

Menu Object. A mobile-first, progressibly enhanced menu system.
22 stars 4 forks source link

Fix horizontal arrow positioning #13

Open alexmansfield opened 8 years ago

alexmansfield commented 8 years ago

Change arrow placement to use left: 50%; margin-left: -5px; so that the arrow will be centered regardless of the width of the :after element. Like this:

    .toggle-submenu:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -3px;
        margin-left: -5px;
        height: 0;
        width: 0;
    }