Skip to content

Commit

Permalink
add w-full class
Browse files Browse the repository at this point in the history
  • Loading branch information
kongulov committed Mar 19, 2021
1 parent d8cb7f8 commit 7e7eaa4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/js/field.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion resources/js/components/DetailField.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div id="nova-tab-translatable" class="details">
<div id="nova-tab-translatable" class="details w-full">
<div class="tab-items px-8" style="margin: 0;">
<span class="tab-item" v-for="lang in field.languages"
:class="{'active':selectedLang === lang}" @click="selectedLang = lang">
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/FormField.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div id="nova-tab-translatable">
<div id="nova-tab-translatable" class="w-full">
<div class="tab-items px-8">
<span class="tab-item" v-for="lang in field.languages"
:class="{'active':selectedLang === lang, 'has-error':checkError(lang)}" @click="selectedLang = lang">
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/IndexField.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="nova-tab-translatable-index">
<div class="nova-tab-translatable-index w-full">
<div class="tab-items px-8">
<span class="tab-item" v-for="lang in field.languages"
:class="{'active':selectedLang === lang}" @click="selectedLang = lang">
Expand Down

0 comments on commit 7e7eaa4

Please sign in to comment.