This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"openapi": "3.0.3", | |
"info": { | |
"title": "n8n Tawk Reply API", | |
"version": "1.0.0" | |
}, | |
"paths": { | |
"/tawk/tracking": { | |
"post": { | |
"summary": "Check tracking number", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$vars: ( | |
'var1': (top: 0, left: 0), | |
'var2': (top: 0, left: 0) | |
); | |
@each $name in map-keys($vars) { | |
&.#{$name}{ | |
$item: map_get($vars, $name); | |
top: map-get($item, top); | |
left: map-get($item, left); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$var: ( | |
1: (top: 0, left: 0), | |
2: (top: 0, left: 0) | |
); | |
@for $i from 1 through length($var) { | |
&:nth-child(#{$i}){ | |
$item: map-get($var, $i); | |
top: map-get($item, top); | |
left: map-get($item, left); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$buttons: ( | |
'blue': #00b3bf, | |
'green': #79cf40, | |
'red': #dd2a0d | |
); | |
@each $name, $color in $icons { | |
&.#{$name}{ | |
background: $color; | |
} | |
} |