themeum / qubely

Qubely Blocks – Full-fledged Gutenberg Toolkit
GNU General Public License v3.0
84 stars 36 forks source link

Timeline Date needs media query for position attribute #19

Closed nicmare closed 4 years ago

nicmare commented 4 years ago

problem with spacing value of 0 on small devices:

Bildschirmfoto 2019-11-11 um 14 31 39

solution:

.qubely-block-timeline .qubely-timeline-date-container {
        position: static;
        @media screen and (min-width: 768px) {
            position: absolute;
        }
    }

accept position:absolute when reaching breakpoint

themeum commented 4 years ago

Hi @nicmare,

We already fixed this issue. Soon we will release update. Have a nice day...

Thanks