tybo 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/components/sidebar_component.html.erb +1 -1
- data/app/views/devise/login/home.html.erb +1 -1
- data/app/views/login/home.html.erb +1 -1
- data/lib/generators/bo_namespace/templates/seeds.rb +1 -1
- data/lib/generators/tybo_install/templates/tailwind.config.js +0 -12
- data/lib/tybo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9adcf1453a167d928120910dee95eb19b31e018593b09cff193c5fea7f1148e1
|
4
|
+
data.tar.gz: 45d9027230f376f2634e42b0c9584d0e772792f36444f30b9d594200d8cbd6b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1fd62b3a41a0638c9da59f555198aac3d0349031095210167ecd4267255b999ad0715b57c821e96e0e7b943e85af6071dd8862c01fec8129c9a8c84cc4bd20a
|
7
|
+
data.tar.gz: 9be1f03398c851dcf2c31b29e0ddebaa4d26911118c61b5d4cf214ac413cc3b7276d82332b26a5b60778ac3120e405733879934fae05844f7b571a13f71e88e7
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<div class="flex-1 flex flex-col min-h-0 bg-tybo">
|
3
3
|
<div class="flex-1 flex flex-col pt-5 pb-4 overflow-y-auto">
|
4
4
|
<div class="flex items-center flex-shrink-0 px-4">
|
5
|
-
<%= image_tag(
|
5
|
+
<%= image_tag(Tybo.configuration.logo_url, alt: "logo", class: 'mx-auto h-15 w-auto') %>
|
6
6
|
</div>
|
7
7
|
|
8
8
|
<nav class="mt-5 flex-1 px-2 space-y-1" aria-label="Sidebar">
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<div class="flex flex-1 flex-col justify-center py-12 px-4 sm:px-6 lg:flex-none lg:px-20 xl:px-24">
|
4
4
|
<div class="mx-auto w-full max-w-sm lg:w-96">
|
5
5
|
<div>
|
6
|
-
|
6
|
+
<%= image_tag Tybo.configuration.logo_url, class: 'h-12 w-auto'%>
|
7
7
|
<h2 class="mt-6 text-3xl font-bold tracking-tight text-gray-900">Sign in to your account</h2>
|
8
8
|
</div>
|
9
9
|
<div class="mt-4">
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<div class="flex flex-1 flex-col justify-center py-12 px-4 sm:px-6 lg:flex-none lg:px-20 xl:px-24">
|
3
3
|
<div class="mx-auto w-full max-w-sm lg:w-96">
|
4
4
|
<div>
|
5
|
-
|
5
|
+
<%= image_tag Tybo.configuration.logo_url, class: 'h-12 w-auto' %>
|
6
6
|
<h2 class="mt-6 text-3xl font-bold tracking-tight text-gray-900">Sign in to your account</h2>
|
7
7
|
</div>
|
8
8
|
<div class="mt-4">
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
if Rails.env.development?
|
4
|
-
%w[dev@tymate.com admin@tymate.com
|
4
|
+
%w[dev@tymate.com admin@tymate.com].each do |email|
|
5
5
|
<%= class_name %>.find_or_create_by(
|
6
6
|
email:
|
7
7
|
).update!(password: 'password')
|
@@ -17,18 +17,6 @@ module.exports = {
|
|
17
17
|
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
|
18
18
|
},
|
19
19
|
colors: {
|
20
|
-
sidebar: {
|
21
|
-
DEFAULT: '#11072C',
|
22
|
-
50: 'rgba(255, 255, 255, 0.5)',
|
23
|
-
200: 'rgba(255, 255, 255, 0.2)',
|
24
|
-
900: 'rgba(0, 0, 0, 0.2)',
|
25
|
-
},
|
26
|
-
custom: {
|
27
|
-
DEFAULT: '#11072C',
|
28
|
-
},
|
29
|
-
home: {
|
30
|
-
DEFAULT: '#F5F5F5'
|
31
|
-
},
|
32
20
|
tybo: {
|
33
21
|
DEFAULT: '#11072C',
|
34
22
|
50: '#e9ebff',
|
data/lib/tybo/version.rb
CHANGED