Gregor Kofler
Gregor Kofler
Fixed it (partially): The example here https://vue-i18n.intlify.dev/guide/#html is erroneous. It has to be ```js const messages = { en: { hello: 'hello world' }, ja: { hello: 'こんにちは、世界' }, de:...
It's a `box-shadow`. You can test it with your browsers developer tools. From _base.scss ```scss a { color: $link-color; outline: none; text-decoration: none; &:focus { @include control-shadow(); } ... }...
Pure JS. It requires jQuery BTW.
Why not use [tiles](https://picturepan2.github.io/spectre/components/tiles.html)?
_variables.scss has font sizes defined. ```scss $font-size: .8rem !default; $font-size-sm: .7rem !default; $font-size-lg: .9rem !default; ``` All you need to do is redefine one or all of them in your...
I switched to Tailwind some time ago. Since the concept is so fundamentally different I'd say there are no "recipes".
@simkepal explicitly asked for a migration to "something like Tailwind". YMMV as always, but comparing a fully blown component based, thoroughly opinionated CSS framework with Tailwind is futile. (Despite all...
Actually no. Since quite a few component based CSS frameworks share similar approaches, one practice could be a bunch of search-and-replaces with some rework afterwards. I case components share the...
Ah, we are at polemics now. I suppose this helps @simkepal a lot.
Looks promising. I'll give it a try with tonight. Gave it a spin - looks really good so far. Thanks.