Merge pull request #209 from ahangarha/Add_bidi_support

Add bidi support
This commit is contained in:
Nicolas Constant 2020-02-08 13:02:07 -05:00 committed by GitHub
commit 3bca277b0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 1084 additions and 539 deletions

View File

@ -37,7 +37,7 @@
<h4 class="header__download-box--subtitle">Try it in your browser!</h4>
<a href="#" class="download-button download-button__web"
title="what are you waiting for? click!"
onClick="window.open('http://sengi.nicolas-constant.com'+'?qt='+ (new Date()).getTime(),'Sengi','toolbar=no,location=no,status=no,menubar=no,scrollbars=no, resizable=yes,width=377,height=800'); return false;"
onClick="window.open('https://sengi.nicolas-constant.com'+'?qt='+ (new Date()).getTime(),'Sengi','toolbar=no,location=no,status=no,menubar=no,scrollbars=no, resizable=yes,width=377,height=800'); return false;"
class="button"><i class="fas fa-globe"></i><span
class="download-button__web--label">launch!</span></a><br />
<br />

1603
docs/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -9,11 +9,10 @@
"author": "Nicolas Constant",
"license": "WTFPL",
"devDependencies": {
"node-sass": "^4.11.0"
},
"dependencies": {
"gulp": "~3.9.1",
"node-sass": "^4.13.0",
"gulp": "^3.9.1",
"gulp-run": "^1.7.1",
"gulp-sass": "^4.0.1"
}
},
"dependencies": {}
}

View File

@ -14,6 +14,7 @@
body {
box-sizing: border-box;
text-align: start;
}
html, body {
@ -30,6 +31,10 @@ html, body {
overflow: hidden;
}
p {
unicode-bidi: plaintext;
}
// .invisible {
// display: none;
// }