Merge pull request #209 from ahangarha/Add_bidi_support
Add bidi support
This commit is contained in:
commit
3bca277b0c
|
@ -37,7 +37,7 @@
|
||||||
<h4 class="header__download-box--subtitle">Try it in your browser!</h4>
|
<h4 class="header__download-box--subtitle">Try it in your browser!</h4>
|
||||||
<a href="#" class="download-button download-button__web"
|
<a href="#" class="download-button download-button__web"
|
||||||
title="what are you waiting for? click!"
|
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="button"><i class="fas fa-globe"></i><span
|
||||||
class="download-button__web--label">launch!</span></a><br />
|
class="download-button__web--label">launch!</span></a><br />
|
||||||
<br />
|
<br />
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -9,11 +9,10 @@
|
||||||
"author": "Nicolas Constant",
|
"author": "Nicolas Constant",
|
||||||
"license": "WTFPL",
|
"license": "WTFPL",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"node-sass": "^4.11.0"
|
"node-sass": "^4.13.0",
|
||||||
},
|
"gulp": "^3.9.1",
|
||||||
"dependencies": {
|
|
||||||
"gulp": "~3.9.1",
|
|
||||||
"gulp-run": "^1.7.1",
|
"gulp-run": "^1.7.1",
|
||||||
"gulp-sass": "^4.0.1"
|
"gulp-sass": "^4.0.1"
|
||||||
}
|
},
|
||||||
|
"dependencies": {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/NicolasConstant/sengi.git"
|
"url": "https://github.com/NicolasConstant/sengi.git"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve",
|
||||||
"start-mem": "node --max_old_space_size=5048 ./node_modules/@angular/cli/bin/ng serve",
|
"start-mem": "node --max_old_space_size=5048 ./node_modules/@angular/cli/bin/ng serve",
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
|
|
||||||
body {
|
body {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
text-align: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
|
@ -29,6 +30,10 @@ html, body {
|
||||||
background-color: $color-primary;
|
background-color: $color-primary;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
unicode-bidi: plaintext;
|
||||||
|
}
|
||||||
|
|
||||||
// .invisible {
|
// .invisible {
|
||||||
// display: none;
|
// display: none;
|
||||||
|
@ -42,4 +47,4 @@ html, body {
|
||||||
|
|
||||||
// #toot-content a {
|
// #toot-content a {
|
||||||
// color: #bec3d8;
|
// color: #bec3d8;
|
||||||
// }
|
// }
|
||||||
|
|
Loading…
Reference in New Issue