forked from cory/tildefriends
Compare commits
1 Commits
tasiaiso-s
...
9f3a3808f9
Author | SHA1 | Date | |
---|---|---|---|
9f3a3808f9
|
@ -2,4 +2,4 @@ default: true
|
||||
MD010: false # Ignore tabs in code blocks
|
||||
MD013: false # Don't wrap lines by default
|
||||
MD046:
|
||||
style: "fenced" # Force fenced code blocks
|
||||
style: 'fenced' # Force fenced code blocks
|
||||
|
@ -339,13 +339,6 @@ class TfElement extends LitElement {
|
||||
};
|
||||
|
||||
let tabs = html`
|
||||
<style>
|
||||
@media only screen and (max-width: 650px) {
|
||||
.hide-on-small-screens {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<div class="w3-bar w3-theme-l1">
|
||||
${Object.entries(k_tabs).map(
|
||||
([k, v]) => html`
|
||||
@ -358,7 +351,6 @@ class TfElement extends LitElement {
|
||||
@click=${() => self.set_tab(v)}
|
||||
>
|
||||
${k}
|
||||
<span class="hide-on-small-screens">${v}</span>
|
||||
</button>
|
||||
`
|
||||
)}
|
||||
|
@ -4,7 +4,15 @@
|
||||
|
||||
- Clone your repository
|
||||
|
||||
Alternatively, you can change the `origin` remote on your existing clone:
|
||||
1. Alternatively, you can add a remote called `fork`:
|
||||
|
||||
`git remote add fork https://dev.tildefriends.net/YOUR_USERNAME/tildefriends.git`
|
||||
|
||||
You'll need to set your branch's upstream to `fork`:
|
||||
|
||||
`git push --set-upstream fork my-branch`
|
||||
|
||||
2. or you can change the `origin` remote on your existing clone altogether:
|
||||
|
||||
`git remote set-url origin https://dev.tildefriends.net/YOUR_USERNAME/tildefriends.git`
|
||||
|
||||
|
Reference in New Issue
Block a user