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
<body class="dark"> | |
<div class="text-slate-900 dark:bg-slate-900 dark:text-slate-100"> | |
<!-- ... --> | |
</div> | |
</body> |
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
.app-links { | |
margin-left: 3rem; | |
gap: 1.2rem; | |
.mobile-app { | |
position: relative; | |
// no support for gap | |
margin-right: 1.2rem; |
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
module.exports = { | |
darkMode: 'class', | |
// ... | |
} |
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
➜ harbor start | |
Calling local harbor with parameters ... | |
Creating network "rajo_harbornet" with driver "bridge" | |
Building php | |
Step 1/19 : FROM ubuntu:16.04 | |
---> 5e13f8dd4c1a | |
Step 2/19 : MAINTAINER BRACKETS by TRIAD | |
---> Using cache | |
---> a65289ff79cf | |
Step 3/19 : RUN echo "deb mirror://mirrors.ubuntu.com/mirrors.txt trusty main restricted universe multiverse" > /etc/apt/sources.list && echo "deb mirror://mirrors.ubuntu.com/mirrors.txt trusty-updates main restricted universe multiverse" >> /etc/apt/sources.list && echo "deb mirror://mirrors.ubuntu.com/mirrors.txt trusty-security main restricted universe multiverse" >> /etc/apt/sources.list |