mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-14 23:52:55 +11:00
fix: DEPRECATION on columnGap.
division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Signed-off-by: Darren <git@darrennathanael.com>
This commit is contained in:
parent
ec696040a5
commit
6bb64b096f
2 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ header {
|
|||
|
||||
.btn {
|
||||
width: 2 * $columnWidth;
|
||||
margin-left: $columnGap / 2;
|
||||
margin-left: math.div($columnGap, 2);
|
||||
}
|
||||
|
||||
h1 {
|
||||
|
|
|
@ -28,7 +28,7 @@ zip_safe = False
|
|||
python_requires = >=3.6
|
||||
install_requires =
|
||||
# Essential packages
|
||||
django>=4.0
|
||||
django>=3.2
|
||||
pygments>=2.11
|
||||
django-staticinline>=1.0
|
||||
django-csp>=3.6
|
||||
|
|
Loading…
Reference in a new issue