Dawid Nitka
Dawid Nitka
Same here. Is there any reason why @media should not be used with container queries?
There it is: ```css @media (min-width: 768px) { .container-fluid { margin-left: 2rem; margin-right: 2rem } } @media (min-width: 768px) { .container { max-width: 768px } } ``` Most probably it...
Yup ```css .c-features { container-type: size; } @container (min-width: 768px) { .c-features { & > li { max-width: 500px; } } } ``` Oh, I read it again and I'll...
Here it is: https://gist.github.com/343f39faf18dd0c009adb9d326c0fe85#file-index-html
@NataliaTepluhina the short answer is: **yes**. A bit longer one is: I would advocate that it might be recommended to use over the setup() function as it is saver (my...
@NataliaTepluhina Thank you very much for your feedback. I really appreciate it. In the coming days I'll run it through again in my head. In case of any new ideas,...
@NataliaTepluhina I just realized that whit this another Pandora's box could be opened, but there is no mention of TS syntax in the style guide. For example in [props rule](https://vuejs.org/style-guide/rules-essential.html#use-detailed-prop-definitions)...
@pikax Thank you for your time and answer and up front: sorry for another long post. > Maybe I am already 👀 #2577 That's cool :) > If a company...
I surrender. It seems that the only option in your opinion is based on the assumption that people are generally passionate about frontend and its concepts, or at least want...
@pikax In the course of this conversation, it crystallized quite clearly for me. Some sort of a help or FAQ page would be needed. > Thought about it but never...