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
extends Area2D | |
enum TeleportDirection { | |
UP, | |
RIGHT, | |
DOWN, | |
LEFT, | |
NONE | |
} |
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
// A simple and clean Scss grid, no bells, no whistles, just 12 columns. | |
// Breakpoint for mobile sizes (portrait iPad) | |
$break-med: 768px; | |
.container { | |
display: grid; | |
grid-template-columns: repeat(12, 1fr); | |
grid-gap: 0 10px; | |
width: 100%; |