mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +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 {
|
.btn {
|
||||||
width: 2 * $columnWidth;
|
width: 2 * $columnWidth;
|
||||||
margin-left: $columnGap / 2;
|
margin-left: math.div($columnGap, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
|
|
|
@ -28,7 +28,7 @@ zip_safe = False
|
||||||
python_requires = >=3.6
|
python_requires = >=3.6
|
||||||
install_requires =
|
install_requires =
|
||||||
# Essential packages
|
# Essential packages
|
||||||
django>=4.0
|
django>=3.2
|
||||||
pygments>=2.11
|
pygments>=2.11
|
||||||
django-staticinline>=1.0
|
django-staticinline>=1.0
|
||||||
django-csp>=3.6
|
django-csp>=3.6
|
||||||
|
|
Loading…
Reference in a new issue