Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
chasenyc authored and actions-user committed Dec 19, 2020
1 parent 433b817 commit a3b7da7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/Events/BandwagonEventCreated.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ class BandwagonEventCreated
use SerializesModels;

/**
* The title for the message displayed to users
* The title for the message displayed to users
*/
public $title;

/**
* The subtitle for the message displayed to users
* The subtitle for the message displayed to users
*/
public $subtitle;

/**
* The ip address of the user who generated the event,
* this is nullable and should only be used if you want
* to filter this event from being seen by the initiator
* of this event.
* of this event.
*/
public $ip;

Expand Down
8 changes: 4 additions & 4 deletions src/View/Components/Renderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ class Renderer extends Component
*/
public function __construct(
String $classSnackbar = 'bandwagon-snackbar',
String $classMessage = 'bandwagon-message',
String $classTitle = 'bandwagon-text bandwagon-title',
String $classSubtitle = 'bandwagon-text bandwagon-subtitle',
String $classMessage = 'bandwagon-message',
String $classTitle = 'bandwagon-text bandwagon-title',
String $classSubtitle = 'bandwagon-text bandwagon-subtitle',
String $classTime = 'bandwagon-text bandwagon-time'
) {
$this->classSnackbar = $classSnackbar;
$this->classMessage = $classMessage;
$this->classTitle = $classTitle;
$this->classSubtitle = $classSubtitle;
$this->classTime = $classTime;
$this->classTime = $classTime;
}

/**
Expand Down

0 comments on commit a3b7da7

Please sign in to comment.