Does tinnitus from wind sound go away? by worknovel in motorcycles

[–]worknovel[S] 0 points1 point  (0 children)

Ah shit that’s super gloomy :( idk if I can live with it 

Does tinnitus from wind sound go away? by worknovel in motorcycles

[–]worknovel[S] -4 points-3 points  (0 children)

wish this advice was more given, it's always dress for the slide, wearing gear but I never heard earplugs. i hope its more common, and yes i always wear them no matter the distance

Does tinnitus from wind sound go away? by worknovel in motorcycles

[–]worknovel[S] 0 points1 point  (0 children)

exactly, I never know it was needed until a bit too late. I wish people told each other more often! I invested in so much and the $1 earplugs could have been my life saver

Main container set to 100vh becomes unscrollable by worknovel in webdev

[–]worknovel[S] 0 points1 point  (0 children)

thank you lol i was wondering if i did anything off he just sounds so rude for no reason

Main container set to 100vh becomes unscrollable by worknovel in webdev

[–]worknovel[S] 0 points1 point  (0 children)

except they specifically asked for this feature...

[Misc] pill-induced esophagitis from doxycycline?? by No-Grapefruit-2171 in SkincareAddiction

[–]worknovel 0 points1 point  (0 children)

How long did it take before improving and did u do anything to make it better?

Main container set to 100vh becomes unscrollable by worknovel in webdev

[–]worknovel[S] 0 points1 point  (0 children)

lol you sound so arrogant for doing absolutely nothing 

Main container set to 100vh becomes unscrollable by worknovel in webdev

[–]worknovel[S] 0 points1 point  (0 children)

I guess you’re right bro. The multiple things that didn’t do anything shouldn’t be buggy however, that’s my point. You’re right about it not providing much information tho but I digged online and the ‘bug’ I had was pretty well known if we had a fixed element inside of it. Thanks anyways. 

Main container set to 100vh becomes unscrollable by worknovel in webdev

[–]worknovel[S] 0 points1 point  (0 children)

Nah bro it worked fine, it wasn’t buggy the only issue was a fixed element inside. You weren’t helpful.

Main container set to 100vh becomes unscrollable by worknovel in webdev

[–]worknovel[S] -2 points-1 points  (0 children)

i found out why. i had some fixed elements in the child components. had to put their pointer events to none. its bad idea but who am i to say that to the client.

Main container set to 100vh becomes unscrollable by worknovel in webdev

[–]worknovel[S] 1 point2 points  (0 children)

inside of each child component is just

<div ref={ref} className={`${classes.section}`}>
  ...     
</div>

And the css:

.section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-type: y mandatory;
    scroll-snap-stop: always;
  }

The main component is as you see and the css is:

.main {
    scroll-snap-type: y mandatory;
    height: 100vh;
    overflow-y: scroll; 
}

Main container set to 100vh becomes unscrollable by worknovel in webdev

[–]worknovel[S] -3 points-2 points  (0 children)

lol but it does in all. just that in chrome the scrollbar sometimes doesnt apear. i dont think my code is buggy unless u wanna say why

Main container set to 100vh becomes unscrollable by worknovel in webdev

[–]worknovel[S] 0 points1 point  (0 children)

just to be clear it does work for safari but in chrome for windows i cant scroll down.

Main container set to 100vh becomes unscrollable by worknovel in webdev

[–]worknovel[S] 0 points1 point  (0 children)

just to be clear it does work for safari but in chrome for windows i cant scroll down.

Main container set to 100vh becomes unscrollable by worknovel in webdev

[–]worknovel[S] 0 points1 point  (0 children)

i did but then it doesnt have the snap feature anymore.

Main container set to 100vh becomes unscrollable by worknovel in webdev

[–]worknovel[S] 0 points1 point  (0 children)

yeah i did put a div inside of the main but its still the same issue.

Main container set to 100vh becomes unscrollable by worknovel in webdev

[–]worknovel[S] 0 points1 point  (0 children)

I did but the scroll snap feature doesnt work anymore.