I like it! Hoping for fast review and merge 😁
Pinned
Activity
ggoraa issue comment headkaze/Hackintool
Recreate app in SwiftUI ?
Hello bro, I'm a Beginner learner and hobbiest. im currently learning how to create swift UI Based app.. I wanted some idea so I thought why not to create something that will benefit the whole Hackintosh Community I've thought about Hackintool 2.0 using swift ui but as i said I'm a beginner I don't know to how to use old libraries in swift
Please Help me This is what I expect the new app to look like
That's an interesting idea! If I will have enough time and willings to rewrite the thing in Swift and SwiftUI, I will do it, I am experienced enough with Swift and SwiftUI to do that
ggoraa issue comment JohnSundell/Plot
Add the dir HTML attribute
Since I will be using this package to build my personal website, which will be supporting English and Arabic, I figured the best way to thank you was to add this small contribution.
I added the ability to add the dir
attribute in both the Node
and Component
based APIs.
It is a global attribute that can be added to any HTML elemnt (technically any element including non-HTML, but I didn't focuse on XML in this PR).
I added a new enum called Directionality
(the name is inspired from the spec linked above) to hold the three possible values. I made the case names clearer to read and added the actual HTML values as a raw value to each case.
public enum Directionality: String {
case leftToRight = "ltr"
case rightToLeft = "rtl"
case auto = "auto"
}
users can use this like so:
// Support Arabic for the entire document.
let html = HTML(
.lang(.arabic),
.dir(.rightToLeft),
.body(.component(Home())
)
// Or for a specific element.
struct Home: Component {
var body: Component {
H1("أهلًا بالعالم!").dir(.auto)
}
}
I hope I added them to the correct extensions.
Your discussions and comments are always welcome.
I think that Sundell now does not give a shit about plot or publish he even closed any possibility to open issues on both plot and publish, which is very concerning
ggoraa issue comment tailwindlabs/tailwindcss
Scroll Snapping is broken in Firefox
What version of Tailwind CSS are you using?
v3.0.23
What build tool (or framework if it abstracts the build tool) are you using?
Publish with a custom step to run Tailwind
What version of Node.js are you using?
Included with TailwindCSS CLI tool
What browser are you using?
Firefox 98.0.1
What operating system are you using?
macOS 12.3
Reproduction URL
https://tailwindcss.com/blog/tailwindcss-v3#scroll-snap-api
Describe your issue
Scroll snap does not work, and simply just messes with scrolling. On Safari everything works as expected.
Safari:
Firefox:
Thanks for a reply!
It will be good to mention that some styling props like backdrop-blur
and scroll snapping
do not work in Firefox on https://tailwindcss.com
Or even better, make a section on https://tailwindcss.com for browser compatibility, like in MDN, which will be very convenient 😁
ggoraa issue tailwindlabs/tailwindcss
Scroll Snapping is broken in Firefox
What version of Tailwind CSS are you using?
v3.0.23
What build tool (or framework if it abstracts the build tool) are you using?
Manual build
What version of Node.js are you using?
Included with TailwindCSS CLI tool
What browser are you using?
Firefox 98.0.1
What operating system are you using?
macOS 12.3
Reproduction URL
https://tailwindcss.com/blog/tailwindcss-v3#scroll-snap-api
Describe your issue
Scroll snap does not work, and simply just messes with scrolling. On Safari everything works as expected.
Safari:
Firefox:
ggoraa push ggoraa/moc
commit sha: 75da5d2e7b10deb6b5465900e16e1d36f81b2a0f
push time in 2 months agoggoraa push ggoraa/homebrew-brew
commit sha: 64cfede48ea97a3a23b265b9eebe3f6984a3ed31
push time in 2 months agoggoraa push ggoraa/homebrew-brew
commit sha: 1fc9535e6a2ce2fc16891ba72e10f098a5847904
push time in 2 months agoggoraa push ggoraa/homebrew-brew
commit sha: d92044021b0c72e76a2fe8e53b41a86522633ed1
push time in 2 months agoggoraa push ggoraa/homebrew-brew
commit sha: d0d2eadf0cf63abe3b511d8991162a8ba93309df
push time in 2 months agoggoraa push ggoraa/homebrew-brew
commit sha: 8e9791119db0ff9ffcd748c19b247c02923839dd
push time in 2 months agoggoraa push ggoraa/homebrew-brew
commit sha: e78afbc072bdd29859c62017cc65c449aa922bb2
push time in 2 months agoggoraa push ggoraa/homebrew-brew
commit sha: 9f2f66f462cb0cf29c5cd9fe4c4d9f9aa9a8ad9b
push time in 2 months agoggoraa push ggoraa/homebrew-brew
commit sha: 8e11687639d400da9f92c23bcbc12fca37e08436
push time in 2 months agoggoraa push ggoraa/homebrew-brew
commit sha: fc4fa718494295056802306f3a9dfb4a015955ee
push time in 2 months ago
Add a 'not-' variant for every pseudo variant
This PR adds a
not-
variant for every pseudo-class variant (plusopen:
), including thegroup-
andpeer-
ones (e.g.,not-focus-within:
,group-not-first:
,peer-not-open:
).In addition to containing many new tests for the
not-
variants intests/variants.test.html
, this PR:backdrop:shadow-md
test from the pseudo-class area to the pseudo-element area;xl:dark:disabledshadow-md
->xl:dark:disabled:shadow-md
) and adds a corresponding test;peer-open:
variant.