Created
February 22, 2023 09:40
-
-
Save jacksleight/6729384238ba3b9eb0ee24388b82f2d9 to your computer and use it in GitHub Desktop.
Statamic Divider Fieldtype
This file contains 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
.divider-fieldtype { | |
border-top: 1px solid #dde3e9; | |
padding: 0 !important; | |
.publish-field-label { | |
display: none; | |
} | |
} |
This file contains 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
<?php | |
namespace App\Fieldtypes; | |
use Statamic\Fields\Fieldtype; | |
class Divider extends Fieldtype | |
{ | |
} |
This file contains 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
<template> | |
<div></div> | |
</template> | |
<script> | |
export default { | |
mixins: [Fieldtype], | |
}; | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment