Skip to content
Snippets Groups Projects
Commit c5f0c1fc authored by Christopher Krawietz's avatar Christopher Krawietz
Browse files

[TASK] — Added base url

parent 9b14db64
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,9 @@ module.exports = {
*/
description: description,
theme: 'nc-provider',
base: '/',
dest: 'public',
/**
* Extra tags to be injected to the page HTML `<head>`
*
......@@ -63,7 +65,7 @@ module.exports = {
[
'@vuepress/pwa',
{
serviceWorker: false,
serviceWorker: true,
popupComponent: 'SWUpdatePopup',
updatePopup: {
message: 'Neue Inhalte sind verfügbar.',
......
......@@ -6,3 +6,13 @@ tagline: Buttons
Mithilfe von Buttons werden verschiedene Handlungsmöglichkeiten des Nutzers dargestellt und klar hierarchisiert. Welche Zielseite durch sie aufgerufen oder welche Aktion ausgelöst wird, kommunizieren Buttons mit einem Label in Audi Type Screen Normal, mit einem Icon oder einer Kombination aus beidem. Buttons geben bei Klick bzw. Tap ein visuelles Feedback in Form eines Response-Effekts sofern die Buttons nicht deaktiviert sind.
![Buttons](/img/components-graphics/comp_buttons.png)
<code-group>
<code-block title="HTML">
```html
<button class="Base-button" title="Das ist ein button" type="button">Das ist ein button</button>
<button class="Base-button" title="Das ist ein button" type="button" disabled>Disabled button</button>
<button class="Base-button" title="Das ist ein button" type="button">Das ist ein button mit sehr viel Text, damit dieser umbricht.</button>
```
</code-block>
</code-group>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment