Skip to content

Instantly share code, notes, and snippets.

View amrsmind's full-sized avatar
👩‍🎨
Thriving

Amr Nabil amrsmind

👩‍🎨
Thriving
View GitHub Profile
@bradtraversy
bradtraversy / docker-help.md
Last active April 26, 2025 18:27
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@saeedseyfi
saeedseyfi / direction.scss
Created September 2, 2016 12:23
How to support rtl and ltr in sass. (I'd suggest using this method: https://gist.github.com/saeedseyfi/4eb9f4634d5eb053da05375c59092da8)
.my-element {
padding: 50px;
background: yellow;
[dir=rtl] & {
float: right;
}
[dir=ltr] & {
float: left;