Cristiano Magro
2025-01-05 bae1330af41d5475709da06fdb3f03ff199635b6
commit | author | age
ff51ab 1 <template>
CM 2   <section>
30949b 3     <base-card>
60df09 4       <template #header>
30949b 5         <h2>Available Badges</h2>
60df09 6       </template>
CM 7       <template #default>
30949b 8         <ul>
CM 9           <li>
10             <base-badge type="admin" caption="ADMIN"></base-badge>
11           </li>
12           <li>
13             <base-badge type="author" caption="AUTHOR"></base-badge>
14           </li>
15         </ul>
16       </template>
17     </base-card>
ff51ab 18   </section>
CM 19 </template>
20
ac100d 21 <style scoped>
ff51ab 22 section h2 {
CM 23   margin: 0.5rem 0;
24   color: #3a3a3a;
25 }
30949b 26
ff51ab 27 ul {
CM 28   list-style: none;
29   margin: 0;
30   padding: 0;
31   display: flex;
32   flex-direction: row;
33 }
34
35 li {
36   margin-right: 1rem;
37 }
38 </style>